Comment imprimer Hello World 10 fois dans Python

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