Challenge 3: Yield Fibonacci Sequence From 1st to Nth Number
Practice an exercise on generators to return a sequence of fibonacci numbers.
We'll cover the following...
Problem Statement
Create a generator to return the Fibonacci sequence starting from the first element up to n
.
The ...