double slash arithmetic operator
// give the integer division
>>> 9/4
2.25
>>> 9//4
>>> 9/5
1.8
>>> 9//5
1Last updated
Was this helpful?
// give the integer division
>>> 9/4
2.25
>>> 9//4
>>> 9/5
1.8
>>> 9//5
1Last updated
Was this helpful?
Was this helpful?