Python Program to Print Hello World

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 also used to illustrate the syntax of the Python language.

It is assumed that you have installed Python runtime in your computer. If not, you can take help from this guide which shows how to install Python in Sublime IDE.

Python Hello World Program

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!")

Program output.

Hello, World!
Python Hello world program
Python Hello world program

Happy Learning !!

Leave a Reply

0 Comments
Inline Feedbacks
View all comments

About Us

HowToDoInJava provides tutorials and how-to guides on Java and related technologies.

It also shares the best practices, algorithms & solutions and frequently asked interview questions.

Our Blogs

REST API Tutorial