Contact: aviboots(AT)netvision.net.il
39,970 questions
51,912 answers
573 users
def convert(lst): s = "" return(s.join(lst)) lst = ['a', 'b', 'c', 'd', 'e', 'f', 'g'] print(convert(lst)) ''' run: abcdefg '''