728x90
divmod()을 사용하여 몫, 나머지 구하기
포스트 난이도: HOO_Intern
# 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
'Python > Python Examples' 카테고리의 다른 글
[Python Examples] os.walk() (0) | 2022.07.03 |
---|---|
[Python Examples] sorted(), sorted(x, reverse) (0) | 2022.03.17 |
[Python Example Codes] Matplotlib: Horizontal Bar Chart(수평 막대 그래프) 데이터 시각화 #01 (0) | 2021.12.16 |
[Python Example Codes] Matplotlib pyplot: plt.subplots() | x값만 활용한 그래프 생성 (0) | 2021.12.14 |
[Python Example Codes] Pyplot: Single Axes 구현, 단일 그래프 (0) | 2021.12.12 |
댓글