[Python] 比較の連鎖 比較は任意に連鎖(chained)できる。 たとえば Python x < y <= z 1 x < y <= z は以下と等価である。 Python x < y and y <= z 1 x < y and y <= z 参考リンク 6.10. 比較