For loop and range together provide a simple way to repeat an action a specific number of times.
To print three lines, use a range to generate the appropriate number of integers:
for i in range(3): print(i, 'Pythons')