tutorial |
---|
Loops are very useful. You don't have to rewrite the same lines many times.
The for
loop lets you run the same code for different values.
-
Complete the function called
standards_maker
. -
The function has to print 300 times the phrase "I will ask questions if I am stuck".
-
Call the function
standards_maker()
.
- You can use the
range()
function in the for loop.
- Read more on loops: https://www.w3schools.com/python/python_for_loops.asp