Como imprimir Hello World 10 vezes em Python

for i in range(10): #loop
  print("Hello World") #print
Pro Programmer