大家好,小弟刚学习使用python
最近想要试着读取台北市公共汽车站牌资料来练习应用
下载后为json格式,尝试用python读取后发生一些问题。
import json
>>> with open("GetSTOP.txt") as f:
stop = json.load(f)
Traceback (most recent call last):
File "<pyshell#11>", line 2, in <module>
stop = json.load(f)
File "C:\Users\jimmy15923\python3\lib\json\__init__.py", line 265, in load
return loads(fp.read(),
UnicodeDecodeError: 'cp950' codec can't decode byte 0xe8 in position 56:
illegal multibyte sequence
>>>
google发现是编码问题,但是文件档的编码本来就已经是utf-8
试了很久还是无解QQ
还请各位高手指教一下小弟
谢谢大家
附上
档案给各位高手测试,
https://drive.google.com/file/d/0B2B1W8xYjS33MXd6SU1iNksxLVU/view