Python
Wiki-
爱编码
展开
-
python编码错误解决:UnicodeDecodeError: 'utf-8' codec can't decode byte 0x92 in position 884: invalid start
在使用python打开某文本时报错:UnicodeDecodeError: ‘utf-8’ codec can’t decode byte 0x92 in position 884: invalid start我这里使用的是Mac,首先找出不是用utf-8编码的文本然后打开终端,并使用vim打开该文件输入:set,发现该文件是用latin1来编码的回车,输入:set fileenco...原创 2019-03-01 15:46:46 · 10061 阅读 · 0 评论 -
Python3.x报错:TypeError: 'range' object doesn't support item deletion
出错语句:trainingSet = range(50)del(trainingSet[randIndex])将range对象修改为数组对象:trainingSet = list(range(50))原创 2019-03-01 16:16:33 · 297 阅读 · 0 评论 -
Anaconda更新下载速度慢
问题:执行下面操作升级conda时,下载的速度很慢conda update conda解决方案:更换anaconda源,使用清华的源conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/conda config --add channels https://mirrors.tu...原创 2019-03-01 23:47:29 · 8954 阅读 · 0 评论 -
Python3.x报错:TypeError: unsupported operand type(s) for -: 'map' and 'map'
主要代码:fltLine = map(float,curLine)dataMat.append(fltLine)rangeJ = float(max(dataSet[:,j]) - minJ)python3.x , 出现错误 unsupported operand type(s) for -: ‘map’ and ‘map’原因:python3.x中map的返回类型是 ‘map’类,它返...原创 2019-03-04 09:50:00 · 5956 阅读 · 0 评论