Certified Solutions
Why are parameters useful? ✔✔They allow us to tailor functions to be used in multiple
situations
How many parameters can we use in each function? ✔✔As many as we need
What is the default starting value of i in a for loop? ✔✔0
What will the values of i be at each iteration of the loop below?
For i in range(3): ✔✔0, 1, 2
What will happen when the value of i reaches 5 in the loop below?
for i in range(5):
left(i)