list = ['1', '2', '3', '4'] # 첫번째 방법 list_1 = list(map(int,list)) # 두번째 방법 list_2 = [int(i) for i in list]