Convert All Items in a Python List to Lower Case
Here are 2 ways to convert all items in a list to a lower case: (1) Using a List Comprehension: Copy my_list = [“AA”, “BB”, “CC”, “DD”, “EE”]lower_case_list = [i.lower() for i in my_list]print(lower_case_list) The result: (2) Using a For Loop: Copy my_list = [“AA”, “BB”, “CC”, “DD”, “EE”] lower_case_list = [] for i in … Read more