Write your first Program in Python ‘Hello World’
There are multiple ways to start programming. In this article, I will address a very simple way that you can get started programming in python. The program that we will create will be the standard “Hello, World!” program.
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.
Run Code
Then, run the file. You will get the following output.
Congratulations! You just wrote your first program in Python.
As you can see, this was a pretty easy task. This is the beauty of Python programming language.
#vevcodelab