8 lines
144 B
Python
8 lines
144 B
Python
|
from collections.abc import Iterator
|
||
|
|
||
|
def fibonacci() -> Iterator[int]:
|
||
|
a, b = 0, 1
|
||
|
while True:
|
||
|
yield a
|
||
|
a, b = b, a + b
|