比較演算子の連結(Python)

Pythonでは、以下のような比較演算子(Python)の連結が可能です。

x = 12
10 <= x <= 20 # True

a = 5
b = 8
c = 12
a < b < c # True