list(map(int, str(s)))
s = 1234567
n = list(map(int,str(s)))
print(n) # [1,2,3,4,5,6,7]
'IT 차곡차곡 > Python' 카테고리의 다른 글
[Python] 문자열 거꾸로 출력하기 (0) | 2021.06.18 |
---|---|
[Python] 파이썬 문자, 아스키코드로 변환 (chr, ord) (0) | 2021.06.17 |
[Python] 문자열 합치기 나누기 - join/split (0) | 2021.04.19 |
[Python] 삼항 연산자 (Ternary Operator) (0) | 2021.04.13 |