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

2020-11-27 00:40

阅读:686

标签:http   问题   re   c   html   代码   

我写的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,搜素材,soscw.com

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

标签:http   问题   re   c   html   代码   

原文地址:http://blog.csdn.net/momomi_2005/article/details/24843603


评论


亲,登录后才可以留言!