This //
(floor division) arithmetic operator returns an integral part of the quotient of the two expressions.
A // B
Here,
Note: Resultant value is a whole integer, though the result’s type is not necessarily int.
>>> 5.0 / 2
2.5
>>> 5.0 // 2
2.0