Contact: aviboots(AT)netvision.net.il
40,875 questions
53,283 answers
573 users
lst = [3, 5, 7, 0, 9] lst = list(map(str, lst)) print(lst) ''' run: ['3', '5', '7', '0', '9'] '''