Printing Hello World (Python)

The first step to learn any programming language is to print Hello World.

This is the easiest program ever. It is only one line of code. 


🎁Code:


print("Hello World")

Output:

Hello World

Comments