如何从LIST Python中删除引号和逗号?

时间:2018-04-17 12:55:17

标签: python

我有这个清单:

['https://test.com/test.jpg','https://test.com/test.jpg']

我需要以这种形式发送:

https://test.com/test.jpg https://test.com/test.jpg

我使用此代码:

await client.send_message(channel, str(text) + str(", ".join( repr(e) for e in image )))

我试图这样做,但它对我不起作用。

[i.replace('"', '') for i in image]

你还能尝试什么?

1 个答案:

答案 0 :(得分:1)

使用str.join

s = ['https://test.com/test.jpg', 'https://test.com/test.jpg']
print(" ".join(s))

<强>输出:

https://test.com/test.jpg https://test.com/test.jpg