1## // Returns the integer value of the quotient
2
3eg 906 / 100 = 9.06
4
5906 // 100 = 9
6
1x = 10
2y = 12
3
4# Output: x > y is False
5print('x > y is',x>y)
6
7# Output: x < y is True
8print('x < y is',x<y)
9
10# Output: x == y is False
11print('x == y is',x==y)
12
13# Output: x != y is True
14print('x != y is',x!=y)
15
16# Output: x >= y is False
17print('x >= y is',x>=y)
18
19# Output: x <= y is True
20print('x <= y is',x<=y)
1#Performs floor-division on the values on either side. Then assigns it to the expression on the left.
2>>> a=6
3>>> a//=3
4>>> print(a)
52
1x > y is False
2x < y is True
3x == y is False
4x != y is True
5x >= y is False
6x <= y is True