I have found two ways of taking floors in Python:
3.1415 // 1
and
import math math.floor(3.1415)
The problem
Cast it to int if you don't want a float
int
float
int(3.1415 // 1)