Skip to content
Home » Python program to print Hello World

Python program to print Hello World

It is very easy to print a sentence in Python. Just we have to do is to write the given sentence in quotation marks enclosed in print paranthesis

#program to print Hello World
print("Hello World!")

# are used to give comments which are ignored by the interpreter. Comments are given just to understand the program by the user

Output:

Hello World!