自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

wakeworld的博客

一支穿云箭,千军万马来相见。

  • 博客(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关注的人

提示
确定要删除当前文章?
取消 删除