プログラム例

#!/usr/bin/python3

x = 3
z = 5

for y in range(2, 7):
    print(y, "\t", x < y < z);

実行結果

2 	 False
3 	 False
4 	 True
5 	 False
6 	 False