怎么解决syntaxerror:non-utf-8 code starting with \xc4'in file

怎么解决syntaxerror:non-utf-8 code starting with \xc4'in file

 
首行增加,已测试可用。
# coding=gbk
 
程序中出现中文,运行的时候出现如下错误:怎么解决syntaxerror:non-utf-8 code starting with \xc4'in file
 
SyntaxError: Non-UTF-8 code starting with 'xc1' in file C:...xxx.py on line 8, but no encoding declared; see http://python.org/dev/peps/pep-0263/ for details
 
导致出错的根源就是编码问题。
解决方案是:
在程序最上面加上:
怎么解决syntaxerror:non-utf-8 code starting with \xc4'in file
 
# coding=gbk
 
这样程序就可以正常运行了
 
 
上一篇:'Settings' object has no attribute 'TEMPLATE_DEBUG' 的解决方法


下一篇:ARP (地址解析协议)