如何用标记列表中的单词列表创建字符串?

时间:2019-06-23 20:13:32

标签: 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"])

但是我得到这个TypeError: sequence item 0: expected str instance, list found

0 个答案:

没有答案