Q. Python Program to Display Hello World on Screen.

Here you will find an algorithm and program in Python programming language to print Hello World on screen. The "Hello World" program is the first step towards learning any programming language and also one of the simplest programs you will learn. All you have to do is display the message "Hello World" on the screen.

Hello World Algorithm

START
  Step 1 → print "Hello World"
STOP


Python Program to Print Hello World

print("Hello World")    

Output

Hello World