What will you see on the next line?
>>>int(12.8)
___

Answer:
12
Explanation:
When you use the int() function on a float, it only cuts off everything past the decimal. Literally all it does. Also, the int() function doesn't round the number. Thus, proving the answer is 12.
hope i helped :D