how do I concatenate string with list in list items?
本问题已经有最佳答案,请猛点这里访问。
1 2 3 | a = [apple,[green,red,yellow]] print(a[0]+" available in these colours" + a[1[]]) |
如何将字符串与列表项中的列表连接起来?
预期结果:
1 | apple available in these collars green red yellow |
假设你从
1 | a = ['apple',['green', 'red', 'yellow']] |
那么
所以
1 | a[0] + ' available in ' + ', '.join(a[1]) |
应该可以,因为您可以将字符串与