标签:height 解决 style div asc nbsp 技术分享 src alt
在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"
标签:height 解决 style div asc nbsp 技术分享 src alt
原文地址:http://www.cnblogs.com/cly0922/p/6670077.html