코테 핵심노트/노트
노트#2 : 파이썬 리스트의 값들을 전부 int로 바꾸기
영민 박
2020. 5. 13. 20:03
lst = ['1', '2', '3']
lst = list(map(lambda x: int(x), lst))
print(lst) # [1,2,3]