python-3.x 打印列表为字符串格式[关闭]

xghobddn  于 2023-05-30  发布在  Python
关注(0)|答案(1)|浏览(161)

已关闭,此问题需要更focused。目前不接受答复。
**想改善这个问题吗?**更新问题,使其仅通过editing this post关注一个问题。

6天前关闭
Improve this question
我有一个清单:

list1 = ['mickah', 'todd']

我的字符串:

phrase = ('This place reserved by ')

我需要返回整个字符串迭代所有值在我的列表。
预期输出:

print(phrase)
This place reserved by mickah, todd
lbsnaicq

lbsnaicq1#

您可以手动执行此操作:phrase + list1[0] + ', ' + list1[1]
@Kurasao评论道:phrase + ', '.join(list1)

相关问题