liuzhenran123 发表于 2022-3-14 21:47:08

谢谢 帮我看看错在哪里了

>>> f = open('E:\\火币api.txt')
>>> f
<_io.TextIOWrapper name='E:\\火币api.txt' mode='r' encoding='cp936'>
>>> f.read()

Traceback (most recent call last):
File "<pyshell#14>", line 1, in <module>
    f.read()
UnicodeDecodeError: 'gbk' codec can't decode byte 0xab in position 2: illegal multibyte sequence

isdkz 发表于 2022-3-14 21:48:42

编码问题,改一下编码就好:
f = open('E:\\火币api.txt', encoding='utf-8')

liuzhenran123 发表于 2022-3-14 21:52:24

isdkz 发表于 2022-3-14 21:48
编码问题,改一下编码就好:

非常感谢

isdkz 发表于 2022-3-14 21:55:55

liuzhenran123 发表于 2022-3-14 21:52
非常感谢

不客气{:5_109:} ,如果问题解决了就帮忙设置一下最佳答案呗,谢谢了
页: [1]
查看完整版本: 谢谢 帮我看看错在哪里了