special operators in python code example
Example 1: // meaning in python
## // Returns the integer value of the quotient
eg 906 / 100 = 9.06
906 // 100 = 9
Example 2: x and y in python
x > y is False
x < y is True
x == y is False
x != y is True
x >= y is False
x <= y is True