본문 바로가기

IT 차곡차곡/Python

[Python] 파이썬 숫자 각자리수를 리스트로 변환

list(map(int, str(s)))

s = 1234567

n = list(map(int,str(s)))

print(n) # [1,2,3,4,5,6,7]