In this Python program, we will learn how to print a “Hello World!!”. This program is the very basic program of python and in this program, we are going to learn how to display a message in python. In the Python Programming language print()
function is used to display a message and this is the built-in function of the python programming language.
Here is the code of the program to print “Hello World!!”.
# Python Program To Print "Hello World!!"
#Display Message on the Screen
print('Hello World!!')
Hello World!!
Comments