Python Program to Print Hello world


Example

									
# This program prints Hello, world!

print('Hello, world')


Output

Hello, world


Explanation

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