How to download Python

  1. Go to Python official website
  2. On this page click on downloads.
  3. On downloads page, download the latest version of python.
  4. When you have downloaded python installer, go in your download folder and double click on it.
  5. Now click on checkbox “add python to path” and install python.

Now you need a code editor to write your code. It can be Pycharm or vs code.

How to download Pycharm

Pycharm is an Integrated Development Environment (IDE) which is used to write code.

  1. Go to JetBrains
  2. Click on downloads button and on downloads page you can download the community version for free.
  3. Click on the pycharm installer in downloads folder in your pc and install pycharm.
  4. After installation, open the pycharm and set the base interpreter to your downloaded version of python and you can start coding here.

What is Python Interpreter

It is a program that translate python program to machine language (to communicate with computer) or simply it executes your python code. It executes our code line by line and whenever error occurs, it stops there and does not execute any line after the error.

Practice Exercises

Complete these exercises to reinforce your learning and earn XP

Sign in to track your progress and earn XP!
Exercise 1 of 2Easy

What is the main function in a program?

10 XP~2 min
Exercise 2 of 2Easy

The main function is the ___ point of a program.

10 XP~2 min