Contact: aviboots(AT)netvision.net.il
39,868 questions
51,791 answers
573 users
lst = ["Python", "Java", "C", "PHP", "VB.NET"] small_lst = [str.lower() for str in lst] print(small_lst) print(lst) ''' run: ['python', 'java', 'c', 'php', 'vb.net'] ['Python', 'Java', 'C', 'PHP', 'VB.NET'] '''