python错误解决:SyntaxError: Non-ASCII character '\xd3' in file crawler.py

时间:2014-07-22 23:00:14   收藏:0   阅读:270

我写的python代码中遇到编码问题:SyntaxError: Non-ASCII character ‘\xd3‘ in file crawler.py


原因:代码中有需要输出中文的部分,但是运行时出现了这个错误;

错误中提示看这个链接:http://www.python.org/peps/pep-0263.html


解决问题的方法:

如果在python中出现了非ASCII码以外的其他字符,需要在代码的开头声明字符格式


解决之一:

在程序的开头加上#-*-coding:utf-8-*-

 ~test]# cat crawler.py
#!/usr/bin/python
#-*-coding:utf-8-*-
import urllib2
import re

解决之二:

在程序的开头加上#coding:utf-8

#!/usr/bin/python
#coding:utf-8
import urllib2
import re

解决之三:

在程序的开头加上:#coding=utf-8

#!/usr/bin/python
#coding=utf-8
import urllib2
import re

python错误解决:SyntaxError: Non-ASCII character '\xd3' in file crawler.py,码迷,mamicode.com

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!