演算子
冪乗
https://docs.python.org/ja/3/reference/expressions.html#the-power-operator
単項演算子
https://docs.python.org/ja/3/reference/expressions.html#unary-arithmetic-and-bitwise-operations
二項演算子
https://docs.python.org/ja/3/reference/expressions.html#binary-arithmetic-operations
シフト演算子
https://docs.python.org/ja/3/reference/expressions.html#shifting-operations
ビットごとの論理演算子
https://docs.python.org/ja/3/reference/expressions.html#binary-bitwise-operations
比較
https://docs.python.org/ja/3/reference/expressions.html#comparisons
a < b < c のように複数の比較を同時に行うことができる。(1つの比較演算子を解決した時点で論理値にならない。)
論理演算子
https://docs.python.org/ja/3/reference/expressions.html#boolean-operations
演算子の優先順位
https://docs.python.org/ja/3/reference/expressions.html#operator-precedence