Python Program to print hello world


August 1, 2021, Learn eTutorial
1014

How to print hello world in python?

Python is a programming language that is trending now because of its simplicity. It is much better than the C language because of its human-readable format and its minimal syntax.

For printing a 'hello world', We need only a print statement. There is no need to include the header library or any other syntax. That is one of the reasons why Python has become much popular.

ALGORITHM

STEP 1: Use the print function to display the string "Hello world".


For a better understanding of this example, we always recommend you learn the basic topics listed below:

Python Source Code

                                          print ("Hello World")
                                      

OUTPUT

Hello World