What is the output of the following ?
>>> a = 4.5 >>> b = 2 >>> print( a // b)
2
2.5
2.25
2.0
// is a floor division operator which truncates the remainder i.e. 0.25 in this case
Comment here: