Complete-Python-Tutorial-and-Notes

 


# Python Programming language was developed by Guido Van Rossum in February 1991.
# It is an interpreted, high-level, general-purpose programming language.

# Programming helps human to reduce manual efforts and
# work which take hours to complete can be accomplished by computer in Seconds.

# To write any language’s code we need a platform where
# we can write the code and can execute it.
# For this we use IDE’s.

# IDE – IDE (Integrated Development Environment)
# is a software application which provides many comprehensive facilities
# to programmers for software or application development.

# You can use Pycharm and Visual Studio Code as IDE

#############################################################################

####### Installation ######

###### First of all download Python :

# Go to this link - https://www.python.org/downloads/
# From the above link download latest version of Python
# After visiting this link simply click on download python button
# Your download will start..


###### Now, Let’s download Pycharm :

# Pycharm – It’s one of the best Integrated Development Environment for Python Language.
# It is developed by the Czech company JetBrains.


# Go to this link - https://www.jetbrains.com/pycharm/download/#section=windows
# After visiting the above link download community version of Pycharm.
# Simply click on community button to download it.
# Your download will start..

###########################################################################

#### After that simply install them like any other normal software.

## After Installing both Python:

# Open terminal (Powershell in case of windows) and then type ‘Python’ and press Enter.
# You should see the output like this ..

# Windows PowerShell
# Copyright (C) Microsoft Corporation. All rights reserved.
# Try the new cross-platform PowerShell https://aka.ms/pscore6
# PS C:\Users\VIVEK MISHRA> python
# Python 3.8.1 (tags/v3.8.1:1b293b6, Dec 18 2019, 22:39:24) [MSC v.1916 32 bit (Intel)] on win32
# Type "help", "copyright", "credits" or "license" for more information.
# >>>

# You can exit the interpreter by typing the following command: quit().

############################################################################

########################## Application of Python ###########################

# You can do almost every thing using Python like

 

# Game Development
# Data Science
# Machine Learning
# and Many more things
# Web Development



##############################################################################

Comments

Popular posts from this blog

MAP FILTER AND REDUCE FUNCTION IN PYTHON

Writing Appending to a File

Recursions: Recursive Vs Iterative Approach