Python Download

 Python is the highest tech, Easy to learn, and Advanced programming language.

If you are completely new to Python go to this link 'Getting started with Python' to know more about this amazing programming language. 


► Download Python

First, You have to download and install Python on your PC. Python can be easily downloaded in Windows, Mac, and Linux. I am downloading in Windows, Try to download the latest version of Python.



► Installing Python

We will now Install python in our Operating System, I have Windows 10 therefore I am installing python in windows.

Steps to Install Python are:

1.   

  

2.    


3.

PIC: tutorialgateway.org
[Check this box of Add Python 'version' to the path and click install now]



4.


5. 


6.

[In Command Prompt type: python --version and you will get the version of python you have installed]

[Type python and you will get something like this:
Python 3.9.6 (tags/v3.9.6:db3ff76, Jun 28 2021, 15:26:21) [MSC v.1929 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license" for more information.]

[If all these commands are working then python is successfully installed on your PC] ๐Ÿ˜Š๐Ÿ˜Š


► Learning Python

  • PYTHON IDLE


    IDLE - Integrated Development and Learning Environment
    IDLE is a place where we can write, run and execute python programs

  • Our First Code in Python

  • [Watch the video to understand how we can write our first Python program]
Open Python IDLE and write print("Hello World") to see the output, And see the video to effectively understand the logic behind it.

print - execute the output on the screen
print() - Inside parenthesis we will write anything we want to print on the terminal
print("Hello World") - Inside parenthesis and inverted commas we will write what to display on the terminal which could vary this statement will print Hello World as the output.

Comments

Popular posts from this blog

Turtle Graphics (full Course) with codes

Python Projects (GUI)