...

/

Solution: Repeat Yourself

Solution: Repeat Yourself

We'll cover the following...

Idea 1: Print your name 3 times

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 ...