Contact: aviboots(AT)netvision.net.il
39,855 questions
51,776 answers
573 users
lst = ("python", "java", "c++", "c", "c#") s = ",".join(lst) print(s) ''' run: python,java,c++,c,c# '''