【E-21】AttributeError: 'float' object has no attribute 'decode'
一、问题源头
隐去原来的问题,直接举个例子:
二、原因
使用jieba分词时遇到了float类型的数据,需要进行转换。
三、解决方案
修改下输入的格式,转换下:
jieba.lcut(str(str1))
隐去原来的问题,直接举个例子:
使用jieba分词时遇到了float类型的数据,需要进行转换。
修改下输入的格式,转换下:
jieba.lcut(str(str1))