- 博客(5)
- 收藏
- 关注
原创 'zip' object is not subscriptable
list(zip(*ngram))[0]改为:next(zip(*ngram))
2018-03-26 19:54:55 959
原创 报错 'dict' object has no attribute 'has_key'
has_key方法在python2中是可以使用的,在python3中删除了。比如:if dict.has_key(word):改为:if word in dict:
2018-03-26 18:17:56 4674
原创 object of type 'zip' has no len()
解决方法:Try using list(zip(...) where you have zip(...)
2018-03-26 18:14:23 3367
原创 python3.6报错:AttributeError: 'str' object has no attribute 'decode'
错误源代码: class_list.append(folder.decode('utf-8')) ;修改方法:把decode改为encode即可。
2018-03-26 18:02:02 78226 13
原创 python3.6:加载jieba时候报错:parse( ) got an unexpected keyboard argument transport_encoding
python3.6:加载jieba时候报错:parse( ) got an unexpected keyboard argument transport_encoding处理办法:先输入pip install jieba,再输入:conda install pip可解决上述问题。
2018-03-24 10:03:13 767 1
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人