In this post, we will see a very simple Python program that displays “Hello, World!” on the screen. Similar to Hello World programs in other languages, this program is also used to illustrate the syntax of the Python language.
It is assumed that you have installed Python runtime on your computer. If not, you can take help from this guide which shows how to install Python in Sublime IDE.
1. Python Program to print Hello World
In Python, the print()
function is an inbuilt function in the language. print()
is used to display the data on the standard output device (by default it is screen).
When we pass the String "Hello, World!"
to the print()
function, string gets displayed on the screen.
print("Hello, World!")
2. Output
The program prints the hello world message in the console.
Hello, World!

Happy Learning !!
Comments