Get Started With Python
In this tutorial, you will learn about how to install and run Python on your computer. Once we have done that, we will be also writing our first Python program.
How to Install Python?
- Download the latest version of Python Here!
- Run the installer file and follow the below steps to install Python Software
- During the installation process, check Add Python to Environment variables. This will be adding Python 3.7 to the environment variable and you will be able to run Python programs from any part of the computer.

- Run Python in the Integrated Development Environment (IDE)
First Python Program
- Type the Python code in any text editor or an IDE and save it .py format
hello_world.py
Code = print("Hello world!")
Output =
Hello, world!
- Now we have Set-up Python and now we can run our first program
- Let's create a very Basic and Simple program called
Hello World
. A "Hello, World!" is that the basic program of python that produces outputHello, World!
on the screen. Since it's a very simple program. - Then, run the file. You will get the following output.
Congratulations! You just wrote your first Python program!
Comments
Post a Comment
Please do not enter any spam links in the comment box.