Answers for "truncate decimal python"

1

python truncate to integer

#Convert number or string to integer, throwing away decimal value.
i = 10.1 
int_i = int(i) #10

#Or, truncate to whole number (same thing).
import math

k = 10.1
int_k = math.trunc(k) #10
Posted by: Guest on January-01-2021
5

how to truncate values in python to 2 decimal places

>>> round(1.4756,2)
1.48
>>> round(1.3333,2)
1.33
Posted by: Guest on May-07-2020

Code answers related to "truncate decimal python"

Python Answers by Framework

Browse Popular Code Answers by Language