diff between or || python code example
Example: diff between / and // in python
#this operator(//) return the quotien of the division , specifically the int quotein
print(5//2)
# 2
#this operator(/) return us the exact solution no matter if its float type or anything
print(5/2)
# 2.5