For example, the standard division symbol '/' rounds to zero:
>>> 4 / 100
0
However, I want it to return 0.04. What do I use?
|
|
|
|
|
|
|
There are three options:
which is the same behavior as the C, C++, Java etc, or
You can also activate this behavior by passing the argument
The second option will be the default in Python 3.0. If you want to have the old integer division, you have to use the Edit: added section about |
|||
|
|
You might want to look at Python's decimal package, also. This will provide nice decimal results.
|
||
|
|
|
|
Other answers suggest how to get a floating-point value. While this wlil be close to what you want, it won't be exact:
If you actually want a decimal value, do this:
That will give you an object that properly knows that 4 / 100 in base 10 is "0.04". Floating-point numbers are actually in base 2, i.e. binary, not decimal. |
||
|
|
|
|
You cant get a decimal value by dividing one integer with another, you'll allways get an integer that way (result truncated to integer). You need at least one value to be a decimal number. |
||
|
|
|
Make one or both of the terms a floating point number, like so:
Alternatively, turn on the feature that will be default in Python 3.0, 'true division', that does what you want. At the top of your module or script, do:
|
||
|
|
|
|
You need to tell Python to use floating point values, not integers. You can do that simply by using a decimal point yourself in the inputs:
|
||
|
|
|
|
A simple route 4 / 100.0 or 4.0 / 100 |
||
|
|
|
|
Try 4.0/100 |
||
|
|