Examples:
5 + 3 = 8 10 / 4 = 2.5 10 // 4 = 2 10 % 4 = 2 2 ** 3 = 8
17 // 5 = 17 % 5 = 3 ** 4 =
Comparison:
Logical:
5 == 5
7 != 8
3 > 10
4 <= 4
"apple" == "Apple"
not (5 > 3 and 2 < 1)
True
False
Error
None