Division(/) vs Floor Division(//) Operators in Python
In Python, we have two division operators: / and // The / is called normal Division operator and // is called Floor Division operator. The Division (/) operator returns a fractional number whereas Floor Division(//) operator rounds off the result to the nearest lower whole number. Example: Output: 6.5 Output: 6 Output: -6.5 Output: -7