欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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 '.....

PyCharm注释中出现中文运行报错的解决办法

 

 

 

方法一:在文件首行加上    # -*- coding:utf-8 -*-

方法二:更改编码格式

file  -->  settings  -->  editor  -->  file encodings  全改为utf-8就可以了

PyCharm注释中出现中文运行报错的解决办法