Return the largest integer (int), which is less than or equal to real (float) in python code example
Example: python after division print only number and not float
#normal division
5 / 4
#1.25
#integer division
5 // 4
#1
#normal division
5 / 4
#1.25
#integer division
5 // 4
#1