PyCharm注释中出现中文运行报错的解决办法
程序员文章站
2022-05-22 16:53:44
SyntaxError: Non-UTF-8 code starting with '..... 方法一:在文件首行加上 # -*- coding:utf-8 -*- 方法二:更改编码格式 File --> Settings --> Editor --> File Encodings 全改为UTF- ......
syntaxerror: non-utf-8 code starting with '.....
方法一:在文件首行加上 # -*- coding:utf-8 -*-
方法二:更改编码格式
file --> settings --> editor --> file encodings 全改为utf-8就可以了
下一篇: Python模块File文件操作