RE: python 读文件报错
这样写也行:
with open('C:/Users/tengy/Desktop/aaa.txt',encoding='UTF-8') as f: print(f.read())
RE: python 读文件报错