본문 바로가기

Let's Study/Python programming

리스트의 문자열을 int 형태로 변환

list_a = ['1', '2', '3', '4']   -> list_a = [1, 2, 3, 4] 로 바꾸고 싶을 때,



python 2. list_a = map(int, list_a)   

python 3. list_a = list(map(int, list_a))


를 해주면 된다.


혹은 


list_a = [int (i) for i in list_a]