Run
# Given a list of strings my_list = ['10', '20', '30', '40'] # Convert list of strings into list of integers list_int = [int(x) for x in my_list] print(list_int)
Output