28

How can I take a float variable, and control how far out the float goes without round()? For example.

w = float(1.678)

I want to take x and make the following variables out of it.

x = 1.67
y = 1.6
z = 1

If I use the respective round methods:

x = round(w, 2) # With round I get 1.68 
y = round(y, 1) # With round I get 1.7
z = round(z, 0) # With round I get 2.0

It's going to round and alter the numbers to the point where there no use to me. I understand this is the point of round and its working properly. How would I go about getting the information that I need in the x,y,z variables and still be able to use them in other equations in a float format?

Mike Laren
  • 7,768
  • 17
  • 48
  • 69
Branzol
  • 283
  • 1
  • 3
  • 7

4 Answers4

41

You can do:

def truncate(f, n):
    return math.floor(f * 10 ** n) / 10 ** n

testing:

>>> f=1.923328437452
>>> [truncate(f, n) for n in range(7)]
[1.0, 1.9, 1.92, 1.923, 1.9233, 1.92332, 1.923328]
7

A super simple solution is to use strings

x = float (str (w)[:-1])
y = float (str (w)[:-2])
z = float (str (w)[:-3])

Any of the floating point library solutions would require you dodge some rounding, and using floor/powers of 10 to pick out the decimals can get a little hairy by comparison to the above.

WakkaDojo
  • 413
  • 3
  • 7
  • Thank you, I'm going to play around with this one. I figured formatting it would create issues as it becomes a string instead of a float? – Branzol Mar 25 '15 at 03:18
  • 1
    I see what you're saying -- Python's floating point arithmetic can sometimes create long strings. But in that case you'd have issues picking out the decimals anyway. A sanity check could instead be iterating from the beginning instead of the end: x = float (str (w)[:4] (etc) – WakkaDojo Mar 25 '15 at 03:22
5

Integers are faster to manipulate than floats/doubles which are faster than strings. In this case, I tried to get time with both approach :

  timeit.timeit(stmt = "float(str(math.pi)[:12])", setup = "import math", number = 1000000)

~1.1929605630000424

for :

timeit.timeit(stmt = "math.floor(math.pi * 10 ** 10) / 10 ** 10", setup = "import math", number = 1000000)

~0.3455968870000561

So it's safe to use math.floor rather than string operation on it.

Raj
  • 65
  • 1
  • 7
2

If you just need to control the precision in format

pi = 3.14159265
format(pi, '.3f') #print 3.142 # 3 precision after the decimal point
format(pi, '.1f') #print 3.1
format(pi, '.10f') #print 3.1415926500, more precision than the original

If you need to control the precision in floating point arithmetic

import decimal
decimal.getcontext().prec=4 #4 precision in total
pi = decimal.Decimal(3.14159265)
pi**2 #print Decimal('9.870') whereas '3.142 squared' would be off

--edit--

Without "rounding", thus truncating the number

import decimal
from decimal import ROUND_DOWN
decimal.getcontext().prec=4
pi*1 #print Decimal('3.142')

decimal.getcontext().rounding = ROUND_DOWN
pi*1 #print Decimal('3.141')
SYK
  • 609
  • 6
  • 17
  • 1
    The format section of your example rounds the numbers when I switch pi to the value in my example. I did learn a ton from this example on other things, but the rounding is what I was trying to stay away from, I needed non rounded numbers. – Branzol Mar 25 '15 at 03:16
  • @Branzol . You're still rounding, just with a different rule. Sorry I didn't see it clearly that you're "rounding" 1.67 as 1.6 and then 1. – SYK Mar 25 '15 at 04:24
  • 1
    Why must you `from decimal import ROUND_DOWN` if you've already `import decimal`? – Unknow0059 Nov 21 '20 at 20:54
  • Use pi.normalize() instead of pi*1 – Sam Apr 03 '22 at 04:39