1.2 Choosing between true division and floor division
Python offers us two kinds of division operators. What are they, and how do we know which one to use? We’ll also look at the Python division rules and how they apply to integer values.
1.2.1 Getting ready
There are several general cases for division:
A div-mod pair: We want both parts – the quotient and the remainder. The name refers to the division and modulo operations combined together. We can summarize the quotient and remainder as q,r = (⌊⌋,a mod b).
We often use this when converting values from one base into another. When we convert seconds into hours, minutes, and seconds, we’ll be doing a div-mod kind of division. We don’t want the exact number of hours; we want a truncated number of hours, and the remainder will be converted into minutes and seconds.
The true value: This is a typical floating-point value; it will be a good approximation to the quotient. For example, if we’re computing an average of several measurements, we usually expect the result to be floating-point, even if the input values are all integers.
A rational fraction value: This is often necessary when working in American units of feet, inches, and cups. For this, we should be using the Fraction class. When we divide Fraction objects, we always get exact answers.
We need to decide which of these cases apply, so we know which division operator to use.
1.2.2 How to do it...
We’ll look at these three cases separately.
Doing floor division
When we are doing the div-mod kind of calculations, we might use the floor division operator, //, and the modulo operator, %. The expression a % b gives us the remainder from an integer division of a // b. Or, we might use the divmod() built-in function to compute both at once:
We’ll divide the number of seconds by 3,600 to get the value of hours. The modulo, or remainder in division, computed with the % operator, can be converted separately into minutes and seconds:
>>> total_seconds = 7385 >>> hours = total_seconds // 3600 >>> remaining_seconds = total_seconds % 3600
Next, we’ll divide the number of seconds by 60 to get minutes; the remainder is the number of seconds less than 60:
>>> minutes = remaining_seconds // 60 >>> seconds = remaining_seconds % 60 >>> hours, minutes, seconds (2, 3, 5)
Here’s the alternative, using the divmod() function to compute quotient and modulo together:
Compute quotient and remainder at the same time:
>>> total_seconds = 7385 >>> hours, remaining_seconds = divmod(total_seconds, 3600)
Compute quotient and remainder again:
>>> minutes, seconds = divmod(remaining_seconds, 60) >>> hours, minutes, seconds (2, 3, 5)
Doing true division
Performing a true division calculation gives a floating-point approximation as the result. For example, about how many hours is 7,385 seconds? Here’s using the true division operator:
>>> total_seconds = 7385
>>> hours = total_seconds / 3600
>>> round(hours, 4)
2.0514
We provided two integer values, but got a floating-point exact result. Consistent with our previous recipe, when using floating-point values, we rounded the result to avoid having to look at tiny error digits.
Rational fraction calculations
We can do division using Fraction objects and integers. This forces the result to be a mathematically exact rational number:
Create at least one Fraction value:
>>> from fractions import Fraction >>> total_seconds = Fraction(7385)
Use the Fraction value in a calculation. Any integer will be promoted to a Fraction:
>>> hours = total_seconds / 3600 >>> hours Fraction(1477, 720)
The denominator of 720 doesn’t seem too meaningful. Working with fractions like this requires a bit of finesse to find useful denominators that makes sense to people. Otherwise, converting to a floating-point value can be useful.
If necessary, convert the exact Fraction into a floating-point approximation:
>>> round(float(hours), 4) 2.0514
First, we created a Fraction object for the total number of seconds. When we do arithmetic on fractions, Python will promote any integers to Fraction objects; this promotion means that the math is done as precisely as possible.
1.2.3 How it works...
Python has two division operators:
The / true division operator produces a true, floating-point result. It does this even when the two operands are integers. This is an unusual operator in this respect. All other operators preserve the type of the data. The true division operation – when applied to integers – produces a float result.
The // truncated division operator always produces a truncated result. For two integer operands, this is the truncated quotient. When floating-point operands are used, this is a truncated floating-point result:
>>> 7358.0 // 3600.0 2.0
1.2.4 See also
For more on the choice between floating-point and fractions, see the Choosing between float, decimal, and fraction recipe.
See PEP-238.