Get Started With Python!

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.
Also, you can choose the path where Python is installed.
Install Python on your computer

  • Run Python in the Integrated Development Environment (IDE)Python IDLE











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 output  Hello, 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!

As you'll be able to observe that this is reasonably Simple Task. This is the Working of Python programming language.

Comments