`
crazier9527
  • 浏览: 994974 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

Python支持中文

阅读更多

让Python支持中文要在Python代码头部加上
# -*- coding: cp936 -*-

如代码:

# -*- coding: cp936 -*-
xxx = file(’e:\\python\\a.txt’,'w’)
xxx.write(’不好1\n’)
xxx.write(’line2\n’)
xxx.write(’line3\n’)
xxx.write(’line4\n’)
xxx.close()

xxx=file(’e:\\python\\a.txt’,'r’)
content = xxx.read()
print content

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics