andor.py 123 B

12345
  1. # test short circuit expressions outside if conditionals
  2. print(() or 1)
  3. print((1,) or 1)
  4. print(() and 1)
  5. print((1,) and 1)