0
What is floor division? And what is the difference in the functioning of a / and a //...i didnt quiet understand it
4 Respostas
0
Normal division (/) returns a float 5 / 2 will return 2.5
Floor division (//) returns an integer 5 // 2 will return 2
0
so it will basically return the integer part of a quotient ?
0
Yeah
0
thank you so much!