`/` vs `//` for division in Python

Is there any benefit to use one over the other? In Python 2, they both seem to return the same results:

>>> 6/3
2
>>> 6//3
2

← Назад к списку