我写的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