标签:
#coding= gbk
s = ‘谷歌‘
print s
输出结果:谷歌
方法二:
在输出时进行转码:
#coding= utf-8
print unicode(s,‘gbk‘)
python中的中文处理问题
原文地址:http://www.cnblogs.com/androidshouce/p/5586181.html