Contact: aviboots(AT)netvision.net.il
37,088 questions
48,466 answers
573 users
programming = ["python", "java", "c", "c++", "c#", "php"] s = ' '.join(programming) print(s) ''' run: python java c c++ c# php '''
def toString(List): return ''.join(List) lst = ['p', 'y', 't', 'h', 'o', 'n', ' ', 'p', 'r', 'o', 'g', 'r', 'a', 'm', 'm', 'i', 'n', 'g'] s = toString(lst) print(s) ''' run: python programming '''