Hello World

A “Hello world!” program is usually a computer program that displays the message “Hello world!”. It is very simple in most of the programming languages.

Let’s see how to write hello world program in python.

Program

# This program prints Hello, World

print('Hello, World')

Output

Hello, World