Python Program to Print Hello World !


A simple program to displays "Hello World!" . Its often used to illustrate the syntax of the language.

# This Program prints Hello World!

print('Hello World !')


Output

Hello World !


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

String is a sequence of characters. In python string are enclosed inside single quotes, double quotes or triple quotes("",""").