What is floor division in python?
Floor division is a division when we get the largest possible integer value but not the accurate value. The actual normal division is greater than or equal to that integer.
Here we’ll see some example.
e.g.,
a=26//3 print(a) b=-12//5 print(b)
This is all about floor division in python.
Subscribe
Login
Please login to comment
0 Discussion