📢 QuizNe.vn will officially cease operations on 27/08/2026. Thank you for being with us.
- def fib(): a, b = 0, 1 while True: yield a a, b = b, a + b
- def fib(): for i in range(10): yield i
- def fib(): a, b = 0, 1 return a + b
- def fib(): while True: return 0