“Hello, World!” program is a very simple computer program that is often used to introduce people to a new programming language. It’s called a “Hello, World!” program because it makes the computer display the words “Hello, World!” on the screen.
To write a “Hello, World!” program in Python, we use a special command called print
that tells the computer to display something on the screen. We can put any words we want inside the print
command, and the computer will display those words.
For example, we can tell the computer to display the words “Hello, World!” by using the following code
print("Hello, World!")

To run the program, we need to use a special program called a “Python interpreter.” The Python interpreter reads the code we wrote and does exactly what it says. So when we run the “Hello, World!” program, the Python interpreter will read the print
command and display the words “Hello, World!” on the screen.
Get Video Python Course Here
Get Video Data Analysis Course Here
Medium Python Course (Curriculum):
- Introduction
- How to install Python in windows, IOS, Linux
- How to install and configure VS Code in Windows, IOS, and Linux
- Writing Your First Python Program: A “Hello, World!” Tutorial
- Stay tuned for more