我有一个列表和一个字符串:
fruits = ['banana', 'apple', 'plum']
mystr = 'i like the following fruits: '
我如何连接它们以便得到(记住枚举可能会改变大小):
i like the following fruits:
banana
apple
plum
我需要逐个启动和水果名称mystr
,如图所示
答案 0 :(得分:2)
您可以使用str.format
和str.join
来获取所需的输出。
<强>实施例强>
fruits = ['banana', 'apple', 'plum']
mystr = 'i like the following fruits: \n\n{}'.format("\n".join(fruits))
print(mystr)
<强>输出:强>
i like the following fruits: banana, apple, plum