summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/compare_multi.py
blob: 1abd18067db80c71ef1ddeb63abe14cf18b45035 (plain) (blame)
1
2
3
4
print(1 < 2 < 3)
print(1 < 2 < 3 < 4)
print(1 > 2 < 3)
print(1 < 2 > 3)