t196.py 118 B

123456789
  1. def f():
  2. if 1 == 2:
  3. yield -1
  4. elif 1 == 1:
  5. yield 3
  6. else:
  7. yield -1
  8. print list(f())