Python Program to Display Hello world

This is a simple program written in Python language that displays Hello World. The programs demonstrates how the Python code looks like and is a beginner program.

Python Program to Display Hello world

print("hello, world")

Output

hello, world

This program uses the python’s built-in print function to display the string Hello, world in the screen.

The strings in python are by default in either single quotes , double quotes or triple quotes.