I have found two ways of taking floors in Python:
3.1415 // 1
and
import math math.floor(3.1415)
The problem
The second approach is the way to go, but there's a way to shorten it.
from math import floor floor(3.1415)