Python Program to Print Hello world!

A simple program that displays “Hello, World!”. It's often used to illustrate the syntax of the language.

 

Source Code

 
# 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 the terminal.

By the way, a string is a sequence of characters. In Python, strings are enclosed inside single quotes, double quotes, or triple quotes.

 

 

No comments

Powered by Blogger.