SyntaxError: Non-UTF-8 code starting with '\xc5' in file t.py on line 3,but no encoding declared;see http://python.org/dev/peps/pep-0263/ for details时间:2022-11-26 17:01:50解决方案是: 在程序最上面加上:# coding=gbk 这样程序就可以正常运行了。