How to print hello world in python 5 times

print("Hello World\n" * 5)

Output:

Hello World
Hello World
Hello World
Hello World
Hello World