简体   繁体   中英

How to round down two significant figures in python?

I've seen the solutions around but they mostly round up to two significant figures and not down

I have tried these few methods

import math
v = 0.000129
math.floor(v*100)/100

-output-
0.0    

or

v = 0.000129
from decimal import Decimal
float(f"{Decimal(f'{v:.2g}'):f}")

-output-
0.00013

As you can see, I want to have two significant figures but do not want them rounded up. Decimal works to give the two sig figs but it rounds up while math just simply gives me 0.

ie a few to test

1999 -> 1900
29901 - > 29000
0.0199 -> 0.019

Thanks!

Mathematical solution without using any string conversion:

def round_down(n, sig_figs):
    import math
    return n - n % 10 ** math.ceil(math.log(abs(n), 10) - sig_figs)


>>> [round_down(n, 2) for n in [1990, 29901, 0.0199]]
[1900, 29000, 0.019]

Caveats:

  • Doesn't work with input of 0
  • Negative numbers are literally rounded in the negative direction, not towards zero (eg -0.0199-0.02 )

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM