How to Write a Python Program to Print Hello World to the Screen

Learn to write a Simple Python Program to print Hello Wolrd text on Screen

Printing a simple text like Hello World is very easy in Python Programming Language..

All we have to do is use the built in function print and specify the text that we want to print.

Hello World.py

1 # This prints Hello World text on the output screen
2 print('Hello World')