Contact: aviboots(AT)netvision.net.il
40,760 questions
53,134 answers
573 users
lst = (9, 3, 1, 8, 0, 4, 5) s = ",".join(map(str, lst)) print(s) ''' run: 9,3,1,8,0,4,5 '''