Solution Review: Return Numbers From n to 0
This lesson covers the Python code to return a list of numbers from n down to 0 using iterators.
We'll cover the following...
Solution: Use Iterator
In this problem, you only had to edit the next
method ...