remove decimal from converted float python code example
Example 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
Example 2: remove decimal python
# Truncates a double to an int
i = 10.0
k = int(i)
# i = 10.0
# k = 10