Answers for "python remove decimal part"

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

Code answers related to "python remove decimal part"

Python Answers by Framework

Browse Popular Code Answers by Language