print("Hello World")
In Python 2 version, the "print" statement is not a function, and therefore it is called without any parentheses. But now in Python 3, it is a function so we must be invoked it with parentheses.
To excute the program press F5 or Go to Run > Run module
Congrats !! You will see the output "Hello World"
>>>Hello World