Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

how do i get the numbers after a decimal point?

for example if i have 5.55

how do i get .55?

share|improve this question

8 Answers

up vote 2 down vote accepted

An easy approach for you:

number_dec = str(number-int(number))[1:]
share|improve this answer
1  
Exercise for the reader: make it work for numbers larger than or equal to 10 – intuited Jan 6 at 18:36
found this in a time of need, thank you OP for asking and @llluuukkke for answering! – wondergoat77 Jun 5 at 22:24
5.55 % 1

Keep in mind this won't help you with floating point rounding problems. I.e., you may get:

0.550000000001

Or otherwise a little off the 0.55 you are expecting.

share|improve this answer
6  
Note also that this probably doesn't do what you want for negative numbers: -5.55%1 = 0.45 on my machine. math.modf() does the right thing. – ire_and_curses Oct 7 '10 at 23:00
1  
As for modf, it can screw the precision as well: math.modf(5.55) will return (0.5499999999999998, 5.0). – bereal Mar 5 '12 at 5:31
does anyone know which would be the faster operation, this method described above, or: float b = a - int(a) ? i suspect the later, but wanted to see if there was confirmation – hokkuk Sep 8 '12 at 14:49

Using the decimal module from the standard library, you can retain the original precision and avoid floating point rounding issues:

>>> from decimal import Decimal
>>> Decimal('4.20') % 1
Decimal('0.20')

As kindall notes in the comments, you'll have to convert native floats to strings first.

share|improve this answer
For the benefit of the original question-asker: floats must be converted to a strings before they can be converted to Decimals. So if you have n = 5.55, n is a float, and you should do Decimal(str(n)) % 1 to get the fractional part. (This isn't necessary if you have an integer, but it doesn't hurt.) – kindall Oct 7 '10 at 23:25
@kindall: Aye, good point. – intuited Oct 8 '10 at 0:55
@intuited: It doesn't need to be decimal, it works also for float: 10.0/3 % 1 at least on my system – aherok Mar 29 at 12:15

What about:

a = 1.3927278749291
b = a - int(a)

b
>> 0.39272787492910011

Or, using numpy:

import numpy
a = 1.3927278749291
b = a - numpy.fix(a)
share|improve this answer
import math
orig = 5.55
whole = math.floor(orig)    # whole = 5.0
frac = orig - whole         # frac = 0.55
share|improve this answer
>>> n=5.55
>>> if "." in str(n):
...     print "."+str(n).split(".")[-1]
...
.55
share|improve this answer
1  
This is OK for garden-variety numbers, but doesn't work so well for numbers large (or small) enough to require scientific notation. – kindall Oct 8 '10 at 1:13

Try Modulo:

5.55%1 = 0.54999999999999982
share|improve this answer

Use floor and subtract the result from the original number:

>> import math #gives you floor.
>> t = 5.55 #Give a variable 5.55
>> x = math.floor(t) #floor returns t rounded down to 5..
>> z = t - x #z = 5.55 - 5 = 0.55
share|improve this answer
3  
If you're going to import math, why not just use math.modf()? – ire_and_curses Oct 7 '10 at 23:02
@ire_and_curses: I am providing an alternative solution to the problem. – thyrgle Oct 7 '10 at 23:03
floor does the same as casting to a int so could replace math.floor(t) with int(t) – QuantumKarl May 26 at 15:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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