自己创建的模块文件 调用就报错
第一版的50讲 模块我自己写了一个模块
用import 掉用模块的时候就报错
大佬帮忙看看是哪里的问题
Traceback (most recent call last):
File "<pyshell#0>", line 1, in <module>
import a
File "C:\Program Files\Python311\a.py", line 2
print("�ˣ����� A ģ��~")
^
SyntaxError: (unicode error) 'utf-8' codec can't decode byte 0xe0 in position 0: invalid continuation byte 本帖最后由 isdkz 于 2022-12-19 15:02 编辑
把你编写的那个模块的文本编码改为 utf-8,用记事本打开,文件 -> 另存为 -> 编码选择 UTF-8
页:
[1]