What is quotient in python?

In Python, you can calculate the quotient with // and the remainder with %.

q = 10 // 3
mod = 10 % 3
print(q, mod)
# 3 1

The built-in function divmod() is useful when you want both the quotient and remainder.

  • Built-in Functions - divmod() — Python 3.7.4 documentation

divmod(a, b) returns a tuple (a // b, a % b).

You can unpack and assign to each variable.

  • Unpack a tuple and list in Python

q, mod = divmod(10, 3)
print(q, mod)
# 3 1

Of course, you can receive it as a tuple.

answer = divmod(10, 3)
print(answer)
print(answer[0], answer[1])
# (3, 1)
# 3 1

View Discussion

Improve Article

Save Article

  • Read
  • Discuss
  • View Discussion

    Improve Article

    Save Article

    Given two numbers n and m. The task is to find the quotient and remainder of two numbers by dividing n by m.

    Examples:

    Input:
    n = 10
    m = 3
    Output:
    Quotient:  3
    Remainder 1
    
    Input
    n = 99
    m = 5
    Output:
    Quotient:  19
    Remainder 4

    Method 1: Naive approach

    The naive approach is to find the quotient using the double division (//) operator and remainder using the modulus (%) operator.

    Example:

    Python3

    def find(n, m):

        q = n//m

        print("Quotient: ", q)

        r = n%m

        print("Remainder", r)

    find(10, 3)

    find(99, 5)

    Output:

    Quotient:  3
    Remainder 1
    Quotient:  19
    Remainder 4

    Time Complexity: O(1)

    Auxiliary Space: O(1)

    Method 2: Using divmod() method

    Divmod() method takes two numbers as parameters and returns the tuple containing both quotient and remainder.

    Example:

    Python3

    q, r = divmod(10, 3)

    print("Quotient: ", q)

    print("Remainder: ", r)

    q, r = divmod(99, 5)

    print("Quotient: ", q)

    print("Remainder: ", r)

    Output:

    Quotient:  3
    Remainder 1
    Quotient:  19
    Remainder 4

    Time Complexity: O(1)

    Auxiliary Space: O(1)


    This is a Python Program to read two numbers and print their quotient and remainder.

    Problem Description

    The program takes two numbers and prints the quotient and remainder.

    Problem Solution

    1. Take in the first and second number and store it in separate variables.
    2. Then obtain the quotient using division and the remainder using modulus operator.
    3. Exit.

    Program/Source Code

    Here is the source code of the Python Program to read two numbers and print their quotient and remainder. The program output is also shown below.

     
    a=int(input("Enter the first number: "))
    b=int(input("Enter the second number: "))
    quotient=a//b
    remainder=a%b
    print("Quotient is:",quotient)
    print("Remainder is:",remainder)

    Program Explanation

    1. User must enter the first and second number .
    2. The quotient is obtained using true division (// operator).
    3. The modulus operator gives the remainder when a is divided by b.

    Runtime Test Cases

     
    Case 1:
    Enter the first number: 15
    Enter the second number: 7
    Quotient is: 2
    Remainder is: 1
     
    Case 2:
    Enter the first number: 125
    Enter the second number: 7
    Quotient is: 17
    Remainder is: 6

    Sanfoundry Global Education & Learning Series – Python Programs.

    To practice all Python programs, here is complete set of 150+ Python Problems and Solutions.

    Next Steps:

    • Get Free Certificate of Merit in Python Programming
    • Participate in Python Programming Certification Contest
    • Become a Top Ranker in Python Programming
    • Take Python Programming Tests
    • Chapterwise Practice Tests: Chapter 1, 2, 3, 4, 5, 6, 7, 8, 9, 10
    • Chapterwise Mock Tests: Chapter 1, 2, 3, 4, 5, 6, 7, 8, 9, 10

    What is quotient in python?

    Manish Bhojasia, a technology veteran with 20+ years @ Cisco & Wipro, is Founder and CTO at Sanfoundry. He lives in Bangalore, and focuses on development of Linux Kernel, SAN Technologies, Advanced C, Data Structures & Alogrithms. Stay connected with him at LinkedIn.

    Subscribe to his free Masterclasses at Youtube & technical discussions at Telegram SanfoundryClasses.

    What is a quotient in programming?

    quotient = dividend / divisor; Similarly, the remainder is evaluated using % (the modulo operator) and stored in remainder . remainder = dividend % divisor; Finally, the quotient and remainder are displayed using printf() .

    Which operator gives quotient in Python?

    Given two numbers n and m. The task is to find the quotient and remainder of two numbers by dividing n by m. The naive approach is to find the quotient using the double division (//) operator and remainder using the modulus (%) operator.

    What is quotient in integer?

    Quotient is the answer obtained when we divide one number by another. For example, if we divide the number 6 by 3, we get the result as 2, which is the quotient. The quotient can be an integer or a decimal number.

    What division is in Python?

    Python has two division operators, a single slash character for classic division and a double-slash for “floor” division (rounds down to nearest whole number). Classic division means that if the operands are both integers, it will perform floor division, while for floating point numbers, it represents true division.