# double slash arithmetic operator

`//` give the integer division&#x20;

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