Skip to content

Latest commit

 

History

History
 
 

13-Create-A-For-Loop

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
tutorial

13 Create A For Loop

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.

📝 Instructions:

  1. Create a function called standards_maker.

  2. The function has to print 300 times the phrase "I will write questions if I am stuck".

  3. Call the function standards_maker().

💡 Hint:

  • You can use the range() function in the for loop.

🔎 Important: