我有这个清单:
['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]
你还能尝试什么?
答案 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