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]
'Let's Study > Python programming' 카테고리의 다른 글
TypeError: Unicode-objects must be encoded before hashing (0) | 2020.09.12 |
---|