Python:在pos_tag之后重建

时间:2018-04-21 03:37:04

标签: python

使用pos_tag后我必须遵循结果:

list = [('a',` '1'), ('b', '2'), ('c', '3'), ('d', '4')]

现在,我必须重建如下:

a b c d

我用过:

[x[0] for x in list]

但是,结果是

[' a',' b',' c' ,' d']

1 个答案:

答案 0 :(得分:3)

使用join方法" "将其作为字符串

data = [('a', '1'), ('b', '2'), ('c', '3'), ('d', '4')]
s= " ".join(x[0] for x in data)
print(s)

OUT

a b c d