python arithmetic code example
Example 1: ** in python
#** is the exponent symbol in Python, so:
print(2 ** 3)
#output: 8
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
#** is the exponent symbol in Python, so:
print(2 ** 3)
#output: 8
x > y is False
x < y is True
x == y is False
x != y is True
x >= y is False
x <= y is True