PythonExtra/tests/basics/compare_multi.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

5 lines
72 B
Python
Raw Normal View History

2014-04-10 19:29:51 +02:00
print(1 < 2 < 3)
print(1 < 2 < 3 < 4)
print(1 > 2 < 3)
print(1 < 2 > 3)