Python Program to display "Hello, World!"

Problem

Write a program in Python to display “Hello, World!” on the screen.

Python Program to display “Hello, World!” in Console Window.

This is a simple Python program that displays “Hello, World!” on the console window.

# Python program to prints Hello, world! by Abundantcode.com

print('Hello, world!')

Output

Hello, World!

The above Python program uses the print() function to display the Hello,World! string to the screen. Note that the strings are enclosed inside the single quotes in the above program but the same can be enclosed in double quotes or triple quotes in python.