x + y
x - y
x * y
x / y
x // y
x % y
-x
+x
abs(x)
int(x)
float(x)
complex(re, im)
c.conjugate()
divmod(x, y)
pow(x, y)
x ** y
math.trunc(x)
round(x[, n])
math.floor(x)
math.ceil(x)
# Boolean operators
x or y
x and y
not x
# Comparison
<
<=
>
>=
==
!=
is
is notx | y
x ^ y
x & y
x << n
x >> n
~xMore: https://docs.python.org/3/library/stdtypes.html