list_a = ['1', '2', '3', '4'] -> list_a = [1, 2, 3, 4] 로 바꾸고 싶을 때,
list_a = map(int, list_a) 를 해주면 된다.
or list_a = [int(i) for i in list_a]
'Python' 카테고리의 다른 글
python struct module (0) | 2019.11.21 |
---|---|
[pwntools]pwnlib.util (0) | 2019.11.19 |
hex encoding to chr() (0) | 2019.05.17 |
Python z3 모듈 (0) | 2018.12.02 |