Python 33

Python 100 [Python 100] Python 100

(Python 2.0+)

#!/usr/bin/python # -*- coding: UTF-8 -*- L = [1,2,3,4,5] s1 = ','.join(str(n) for n in L) print (s1)

1,2,3,4,5

Python 100 [Python 100] Python 100