赞
踩
UnicodeDecodeError: ‘gbk’ codec can’t decode byte 0x80 in position 10: illegal multibyte sequence
代码如下:
# 打印歌词
file = open("歌曲.txt")
# 读取文件
file_read = file.read()
print(file_read)
# 关闭文件
file.close()
本以为可以收工的时候,运行却出现了错误:
翻译出来是:UnicodeDecodeError: ‘gbk’ codec不能解码字节0x80在位置10:非法多字节序列
这个错误指出的是字节编码不对,一般的话我们用的都是utf-8
更改如下:
file = open("歌曲.txt", encoding="utf-8")
# 读取文件
file_read = file.read()
print(file_read)
# 关闭文件
file.close()
运行:
这样我们就顺利结束啦!!!
嗷!!!
对了,这首歌是徐海俏歌手唱的 《南下》,喜欢听歌的可以听一下哦!
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。