목차 1 개요 2 같이 보기 3 참고 개요 Python divmod() 나눗셈 몫과 나머지를 튜플 형태로 반환하는 Python 함수 print( divmod(13, 5) ) # (2, 3) print( divmod(9, 2) ) # (4, 1) 같이 보기 함수 divmod() 참고 https://docs.python.org/3/library/functions.html#divmod