#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