1#this operator(//) return the quotien of the division , specifically the int quotein
2print(5//2)
3# 2
4#this operator(/) return us the exact solution no matter if its float type or anything
5print(5/2)
6# 2.5
1# The true div operator (//) return the quotien of a division
2print(5 // 2)
3# 2
4
5# The modulo operator (%) returns the reminder of a division
6print(5 % 1)
7# 1