If you are using Python 3.0 then, 5 / 2 will return 2.5 and 5 // 2 will return 2. The former is floating-point division, and the latter is floor division, sometimes also called integer division.
To know more about this you can have a look at the following video tutorial:-