반응형
list(map(int, str(n)))
n = 12345
n_list = list(map(int, str(n)))
// [1, 2, 3, 4, 5]
또 다른 방법
[int(a) for a in str(12345)]
728x90
반응형
'Python' 카테고리의 다른 글
[Python] PIL jpg png webp 변환 Image.convert() (0) | 2021.03.25 |
---|---|
[Python] json 파일에 주석 달기 (1) | 2021.02.11 |
[pyQT] 단순 alert 창 띄우기. 버튼 하나만 있는. (0) | 2020.12.11 |
[Python] (Windows) Open Explorer. 탐색기 열기 (1) | 2020.12.11 |
[pyQT] File/Directory 선택 Dialog 띄우기 QFileDialog (0) | 2020.12.11 |
댓글