python语言如何打出中文,python2.5
发布网友
发布时间:2022-04-06 14:04
我来回答
共3个回答
热心网友
时间:2022-04-06 15:33
添加
# encoding: utf-8
到你的 python脚本第一行,注意,第一行!【其实第二行也可以】
热心网友
时间:2022-04-06 16:51
s = u'我是中文'
print s
热心网友
时间:2022-04-06 18:26
[linux event]:
#!/usr/bin/python
# encoding: utf-8
s = u'中文, English'
print s.encode('utf-8')
[windows event]:
#!/usr/bin/python
# encoding: utf-8
s = u'中文, English'
print s.encode('gbk')
脚本文件以utf-8编码格式保存