vote up 6 vote down star

For example, the standard division symbol '/' rounds to zero:

>>> 4 / 100
0

However, I want it to return 0.04. What do I use?

flag

75% accept rate

8 Answers

vote up 25 vote down check

There are three options:

>>> 4 / float(100)
0.04
>>> 4 / 100.0
0.04

which is the same behavior as the C, C++, Java etc, or

>>> from __future__ import division
>>> 4 / 100
0.04

You can also activate this behavior by passing the argument -Qnew to the Python interpreter:

$ python -Qnew
>>> 4 / 100
0.04

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 // operator.

Edit: added section about -Qnew, thanks to ΤΖΩΤΖΙΟΥ!

link|flag
Please also add the availability of python -Q new command-line option to make your answer more complete. – ΤΖΩΤΖΙΟΥ Sep 23 '08 at 9:26
This gives a floating point value, not a decimal value. See Glyph's answer. – Jim Sep 23 '08 at 15:19
vote up 1 vote down

You might want to look at Python's decimal package, also. This will provide nice decimal results.

>>> decimal.Decimal('4')/100
Decimal("0.04")
link|flag
vote up 8 vote down

Other answers suggest how to get a floating-point value. While this wlil be close to what you want, it won't be exact:

>>> 0.4/100.
0.0040000000000000001

If you actually want a decimal value, do this:

>>> import decimal
>>> decimal.Decimal('4') / decimal.Decimal('100')
Decimal("0.04")

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.

link|flag
vote up 0 vote down

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.

link|flag
Please note that this won't be the case anymore in Python 3.0 if you use /. – Torsten Marek Sep 22 '08 at 20:13
vote up 4 vote down

Make one or both of the terms a floating point number, like so:

4.0/100.0

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:

from __future__ import division
link|flag
vote up 2 vote down

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:

>>> 4/100.0
0.040000000000000001
link|flag
vote up 1 vote down

A simple route 4 / 100.0

or

4.0 / 100

link|flag
vote up 1 vote down

Try 4.0/100

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.