I encountered the use of // opertor in place of / in a python tutorial I was going through. What is the difference between / and // operator in Python?
Asked
Active
Viewed 1.5k times
1 Answers
11
In Python 3.0 and above, check in your terminal
a) / operator aka classic division
>>> 5/2
2.5
b) //operator aka floor division
>>> 5//2
2
Reference
prayagupa
- 28,818
- 13
- 146
- 190