gincheong / Memo

개발 관련 내용들을 메모하기 위한 용도로 만든 빈 레포지토리입니다.
0 stars 0 forks source link

파이썬 n진법 구하는 재귀함수 #9

Open gincheong opened 4 years ago

gincheong commented 4 years ago
NOTATION = '0123456789ABCDEF'

def function(number, n) :
    quotient, remainder = divmod(number, n)
    n = NOTATION[remainder]
    return function(quotient, n) + n if q else n

from https://brownbears.tistory.com/468