Python преобразовать плавание во всю часть числа

import math
float = 12.16785
print("The value of number is: ",end="")
print (math.trunc(float))
Shy Shrike