Solution: Repeat Yourself
We'll cover the following...
We'll cover the following...
Idea 1: Print your name 3 times
for i in range(3):print("YourName")
The
forloop repeats the code inside it a certain number of times.range(3)means the loop ...
for i in range(3):print("YourName")
The for loop repeats the code inside it a certain number of times.
range(3) means the loop ...