打开txt文件时,出现
'gbk' codec can't decode byte 0xff in position 0: illegal multibyte sequence
在python前面,加
#-*- coding : utf-8 -*-
# coding: utf-8
结果不行。
把读取格式改成
word=open('d:/ex/china.txt','r',encoding='"unicode_escape"')
spyder里处理的结果是
'ÿþ\n\x00\n\x00I\x00 \x00l\x00o\x00v\x00e\x00 \x00C\x00h\x00i\x00n\x00a\x00.\x00\n\x00\n\x00'
Visual Studio Code的结果是
不是自己理想的样子。
后来想到这个是直接在powershell里建的文件,不是在notepad++建的,于是重新在notepad++新建txt文件,读取果然没问题。