본문 바로가기
Python/Python Examples

[Python Examples] divmod()을 사용하여 몫, 나머지 구하기

by Henry Cho 2022. 3. 15.
728x90

divmod()을 사용하여 몫, 나머지 구하기


포스트 난이도: HOO_Intern

 

[Notice] 포스트 난이도에 대한 설명

안녕하세요, HOOAI의 Henry입니다. Bro들의 질문에 대한 내용을 우선적으로 포스팅이 되다 보니 각각의 포스트에 대한 난이도가 달라서 난이도에 대한 부분을 작성하면 좋겠다는 의견을 들었습니다

whoishoo.tistory.com


 

# Example Codes

print("Enter the first number: ")
q = input()
print("Enter the second number: ")
r = input()
quotient, remainder = divmod(int(q), int(r))
print("Quotient:", quotient)
print("Remainder:", remainder)
Enter the first number: 
3
Enter the second number: 
12
Quotient: 0
Remainder: 3

Process finished with exit code 0

# Explain Codes

divmod()를 사용하면 몫과 나머지를 구할 수 있다.

input()을 통해 나눌 숫자 2개를 입력해준다.

입력한 숫자를 토대로 divmod로 몫과 나머지를 구해준 다음 print()로 출력해주면 위의 예제 코드와 같은 결과가 산출된다.

divmod()의 경우에는 카카오 온라인 코딩 테스트 문제에서도 사용되었던 기능이다.


728x90

댓글