How Can I Print a Statement Any Number of Times

Below we print out the statement, "GeoTashfeen" 5 times:

Since i starts with 0, the statement prints out 5 times. i goes from 0 to 1 to 2 to 3 to 4.

In the range() function, the number you specify is exclusive, meaning it is not included in the loop.
However, since i begins at an index of 0, it works out perfectly,
in that the number you specify in the range() function is the number of times a statement is executed.

The code above gives the following output shown below: