python错误解决:SyntaxError: Non-ASCII character '\xd3' in file crawler.py
2020-11-27 00:40
标签: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 解决之二: 在程序的开头加上#coding:utf-8 #!/usr/bin/python 解决之三: 在程序的开头加上:#coding=utf-8 #!/usr/bin/python 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
原因:代码中有需要输出中文的部分,但是运行时出现了这个错误;
#!/usr/bin/python
#-*-coding:utf-8-*-
import urllib2
import re
#coding:utf-8
import urllib2
import re
#coding=utf-8
import urllib2
import re
文章标题:python错误解决:SyntaxError: Non-ASCII character '\xd3' in file crawler.py
文章链接:http://soscw.com/index.php/essay/22764.html