how do i get the numbers after a decimal point?
for example if i have 5.55
how do i get .55?
|
|
An easy approach for you:
|
|||||||
|
Keep in mind this won't help you with floating point rounding problems. I.e., you may get:
Or otherwise a little off the 0.55 you are expecting. |
|||||||||||
|
|
Using the
As kindall notes in the comments, you'll have to convert native |
|||||||
|
|
What about:
Or, using numpy:
|
|||
|
|
|
|||
|
|
|
|||||
|
|
Use floor and subtract the result from the original number:
|
|||||||||
|