将生成器转换为列表,但获取错误:'_io.TextIOWrapper'对象没有属性'decode'(python 3.6.4)

时间:2018-06-03 01:03:40

标签: python-3.x syntax-error generator tokenize

我正在处理 utf-8 中的文字。 我想对它进行标记,然后将其转换为列表。 但是我收到以下错误。

import nltk, jieba, re, os

with open('file.txt') as f:
    tokenized_text = jieba.cut(f,cut_all=True)

type(tokenized_text)
generator

word_list = list(tokenized_text)
---------------------------------------------------------------------------
 AttributeError                            Traceback (most recent call last)
<ipython-input-5-16b25477c71d> in <module>()
----> 1 list(new)

~/anaconda3/lib/python3.6/site-packages/jieba/__init__.py in cut(self, sentence, cut_all, HMM)
280             - HMM: Whether to use the Hidden Markov Model.
281         '''
--> 282         sentence = strdecode(sentence)
283 
284         if cut_all:

~/anaconda3/lib/python3.6/site-packages/jieba/_compat.py in strdecode(sentence)
 35     if not isinstance(sentence, text_type):
 36         try:
---> 37             sentence = sentence.decode('utf-8')
 38         except UnicodeDecodeError:
 39             sentence = sentence.decode('gbk', 'ignore')

AttributeError: '_io.TextIOWrapper' object has no attribute 'decode'

我明白问题出在jieba包中。 我还尝试将代码更改为

with open('file.txt') as f:
new = jieba.cut(f,cut_all=False)

但得到了同样的结果。

1 个答案:

答案 0 :(得分:0)

jieba.cut采用字符串,而不是文件。这在readme

中有解释