Home [Python] 숫자의 각 자릿수 구하기
Post
Cancel

[Python] 숫자의 각 자릿수 구하기

주어진 정수 num에 대해 각 자릿수를 구하는 함수는 다음과 같다.

1
2
3
4
5
6
def get_number(num):
    i = 1
    while i <= num:
        print(num // i % 10)
        i *= 10
    return

실행 결과는 다음과 같다.

1
2
3
4
5
get_number(2345)
5
4
3
2
This post is licensed under CC BY 4.0 by the author.

[Python] 10진수를 n진수로 변환하는 함수

[Network] 5. 애플리케이션 계층