首页 > 代码库 > pycharm 中文注释

pycharm 中文注释

在pycharm中直接使用中文注释会出现错误“Non-ASCII character ‘\xe6‘ in file”

原因:python默认是acii模式,没有支持utf8

解决办法:在文件最开始部分加入:

#coding:utf-8

经测试加入:#encoding:utf-8 也可以

 

1 #测试中文注释
2 print "hello world"

 

技术分享

 

修改:

1 #coding:uft-8
2 #测试中文注释
3 print "hello world"

技术分享

 

1 #encoding:utf-8
2 #测试中文注释
3 print "hello world"

 

技术分享

 

pycharm 中文注释