Hello World Program

In this tutorial, we will learn how to write a basic hello world program in Python. You may hear from a lot of Python developers that Python is much easier than other programming languages such as Java C++ or swift and that is true. If you ever wrote Hello World program in any other program language then you would find it is so easy to write code in Python.

Example Code:

print("Hello World")

As you can see it is so easy to write Hello World program in python just write and Hello Word in double-quotes in the print function and that’s it. As you we haven’t even added any semicolon at the end of the statement.

Spread the love
Scroll to Top