Python Hello World Program

In this post, we will write a simple python program to display “Hello, World” on the screen. As we all know, we start learning coding by writing simple programs.

Python Hello World Program

Hello World Program is one of the simplest programs by which almost every programmer starts their programming Journey. By writing this program we can understand the syntax of the python.

So, Without further ado, let’s write Hello World Program in Python.

Python Hello World Program

# Python Hello World Program
print(“Hello, World!”)
Python Hello World Program

Output

Hello, World!

In this program, we have used print() built-in function to print the string Hello, World on our screen.

print() function is used to display the string inside the quotation marks to the screen.

The syntax of python is the easiest of all the programming languages.

Conclusion

I hope you have clearly understood how to write Hello, World! Program in Python.

If you still have any query regarding this, feel free to contact us in the Comment Section. We will be delighted to help you.

Leave a Comment

Your email address will not be published. Required fields are marked *