t190.py 98 B

123456
  1. def f():
  2. for i in 1,2,3,4,5:
  3. if i % 2 == 0: continue
  4. yield i
  5. print list(f())