my_list = ["1", "2", "3", "4", "5"] new_list = [] for i in my_list: new_list.append(int(i)) print(new_list)