第三十三题

题目:
按逗号分隔列表。

L = [1,2,3,4,5]
s1 = ','.join(str(n) for n in L)
print (s1)
为更美好的明天而战!!!
原文地址:https://www.cnblogs.com/lovely-bones/p/11635592.html