连接字符串&名单

时间:2018-03-21 13:28:37

标签: python

我有一个列表和一个字符串:

fruits = ['banana', 'apple', 'plum']
mystr = 'i like the following fruits: '

我如何连接它们以便得到(记住枚举可能会改变大小):

i like the following fruits: 

banana
apple
plum

我需要逐个启动和水果名称mystr,如图所示

1 个答案:

答案 0 :(得分:2)

您可以使用str.formatstr.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