This tutorial will create a simple python program that will print “Hello, World” on respected interpreters or IDE’s.

For a better understanding of this program, you must know about the following python Programming topics.
- How to Install Python
- First Python Programming
Python Code
# Program to print Hello, World! print("Hello World!")
The Output of python hello world program will be as follow.
Hello World!
In the above program, we are using the print() function, a built-in python function that prints the given string Hello, World! On your screen.
Was this article helpful? | |
Share on: |