> For the complete documentation index, see [llms.txt](https://til.yulrizka.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://til.yulrizka.com/python/double-slash-arithmetic-operator.md).

# double slash arithmetic operator

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

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