标签: python-3.x pandas
我想创建(预处理后)带有标记化列表中的单词列表的文本。
经过预处理后,我的数据如下所示:
0 [a, b, c, d] 1 [e, f, g, h]
我希望我的数据看起来像这样:
0 a b c d 1 e f g h
我尝试过:data = " ".join(df["Col_1"])
data = " ".join(df["Col_1"])
但是我得到这个TypeError: sequence item 0: expected str instance, list found
TypeError: sequence item 0: expected str instance, list found