My name is Gregory!
- I am learning Git and GitHub.
- GitHub is very interesting.
- I also like the Python Language.
def fibonacci():
current, previous = 0, 1
while True:
yield current
current, previous = current + previous, current
fib = fibonacci()
for x in range(10):
print(next(fib))