SyntaxError
SyntaxError: Non-UTF-8 code starting with ‘/xb2‘ in file
py文件中不支持中文,默认是ASCII编码,即使注释是中文也不行。为了解决这个问题,就需要把文件编码类型改为UTF-8的类型。
解决方案
https://peps.python.org/pep-0263/ PEP 263 – Defining Python Source Code Encodings(定义Python源代码编码)
在源代码开头加入一行编码规则提示语# conding=gbk
注意!!!等号两边不要留空格,否则无效。
原创文章,作者:506227337,如若转载,请注明出处:https://blog.ytso.com/272916.html