Comparision Operators
Arithmatic Operators
2+3
5-3
2*3
4/2
3**3 = 27
returns the remainder of division: 14 % 3 = 2
returns the quotent 14//3 = 4
Assignment Operators
a = 5, a = b
Logical Operator
In and Not In Operator
Escape Character