hehe210417 发表于 2020-5-5 21:00:39

关于py文件编码问题

新建一个txt文档,重命名成*.py文件,用idle打开之后出现specify file encoding,提示the file's encoding is invalid for python3.x.IDLE will convert it to UTF-8.What is the current encoding of the file.输入什么才能解决啊

永恒的蓝色梦想 发表于 2020-5-5 21:09:09

gbk

hehe210417 发表于 2020-5-5 21:11:37

不行啊,还是提示错误,新打开一个idle

老八秘制 发表于 2020-5-5 21:11:53

默认txt文档解码是GBK,我这边没有这个问题,你装个notepad++或者打开时候手动设置

hehe210417 发表于 2020-5-5 21:13:06

还是错误啊

永恒的蓝色梦想 发表于 2020-5-5 21:18:49

hehe210417 发表于 2020-5-5 21:13
还是错误啊

gb2312

txxcat 发表于 2020-5-6 00:54:57

一个方法就是把可能的编码都试一下,这个链接提供了python支持的标准编码:https://docs.python.org/zh-cn/3/library/codecs.html#standard-encodings
再一个方法是把你的文件转成utf-8格式:文件名上按右键选编辑,用notepad打开文件,然后选择另存为,下面选择编码格式为UTF-8然后保存,再用idle打开就正常了。
页: [1]
查看完整版本: 关于py文件编码问题