怎麼解決syntaxerror:non-utf-8 code starting with \xc4'in file
首行增長,已測試可用。
# coding=gbk
程序中出現中文,運行的時候出現以下錯誤:
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
致使出錯的根源就是編碼問題。
解決方案是:
在程序最上面加上:
# coding=gbk
這樣程序就能夠正常運行了