已关闭,此问题需要更focused。目前不接受答复。
**想改善这个问题吗?**更新问题,使其仅通过editing this post关注一个问题。
6天前关闭
Improve this question
我有一个清单:
list1 = ['mickah', 'todd']
我的字符串:
phrase = ('This place reserved by ')
我需要返回整个字符串迭代所有值在我的列表。
预期输出:
print(phrase)
This place reserved by mickah, todd
1条答案
按热度按时间lbsnaicq1#
您可以手动执行此操作:
phrase + list1[0] + ', ' + list1[1]
@Kurasao评论道:
phrase + ', '.join(list1)