UnicodeDecodeError: 'gbk' codec can't decode byte 0xaf in position 31: illegal multibyte sequence
出现这种错误就是读取文件编码错误
解决方法:
打开文件时指定编码的类型
open('course.txt',encoding='utf-8')
UnicodeDecodeError: 'gbk' codec can't decode byte 0xaf in position 31: illegal multibyte sequence
出现这种错误就是读取文件编码错误
解决方法:
打开文件时指定编码的类型
open('course.txt',encoding='utf-8')