# fill in the blanks to execute a for loop that prints the index number each iteration, over 5 iterations
... i ... range(...)...
print(...)
for i in range(0,5):
print('i is: ', i)