机器学习实战 Python3编译存在的各种问题

第四章:问题1、程序清单4-5运行错误:'gbk' codec can't decode byte 0xae in position 199: illegal multibyte sequence

问题定位:wordList = textPares(open('email/ham/%d.txt'%i , encoding = 'gbk').read())

原因:是给定的样本存在不能解码的字符,

解决办法:打开email\ham\23.txt,找到SciFinance?,把?替换成空格即可。


问题2、Python3编译错误:'range' object doesn't support item deletion

问题定位:del(dataIndex[randIndex])

原因:Python2中range返回的是列表对象;Python3中range返回的是range对象。而del函数不能对range对象进行操作

解决办法:trainingSet = list(range(50))   #强制转换为list类型


你可能感兴趣的:(python学习)