double slash arithmetic operator

// give the integer division

>>> 9/4
2.25
>>> 9//4
>>> 9/5
1.8
>>> 9//5
1

Last updated