Exercise 1: Fibonacci Series
Test your understanding of generator functions by solving the Fibonacci series challenge.
We'll cover the following...
Problem statement
Let’s create a generator function to produce a Fibonacci series that does not exceed the desired value.
Function description
The Fibonacci series is a sequence of ...