In a loop over range(5), what does the loop variable hold first?
How many times does a loop over range(5) run?
range(5) hands the loop the numbers 0, 1, 2, 3, 4.
Circle one: True False
What does range(10, 26, 5) hand the loop?
A loop prints the 7 times table from 0 to 12 with range(13). How many lines print?
Answer: ______________
In the 9 times table loop, what does the loop variable hold on each pass?
How many times does a loop over range(3, 12, 3) run?
Answer: ______________
Sam runs a loop over range(5) expecting 1, 2, 3, 4, 5. What is wrong?