a = [apple,[green,red,yellow]]
print(a[0]+ " available in these colours " + a[1[]])
如何将字符串与列表项中的列表连接起来?
预期结果:-
apple available in these collars green red yellow
答案 0 :(得分:3)
假设您从
开始a = ['apple',['green', 'red', 'yellow']]
然后a[0]
是一个字符串,而a[1]
是一个字符串列表。您可以使用a[1]
将', '.join(a[1])
更改为字符串,这将使用逗号和空格将它们连接起来。
所以
a[0] + ' available in ' + ', '.join(a[1])
应该可以,因为您可以使用+
连接字符串。