0% found this document useful (0 votes)
93 views20 pages

Introduction To Python

Python was created in 1991 by Guido van Rossum to serve as a higher-level language than C that could bridge the gap between C and shell scripting. It provides many useful features like being easy to use, having an expressive syntax, dynamic memory allocation, and being open source. Python can be used for data science, software development, artificial intelligence, web applications, and more. Popular Python IDEs include PyCharm, Spyder, and Jupyter Notebook. A sample Python code prints "hello world" or performs basic math operations like division and addition.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
93 views20 pages

Introduction To Python

Python was created in 1991 by Guido van Rossum to serve as a higher-level language than C that could bridge the gap between C and shell scripting. It provides many useful features like being easy to use, having an expressive syntax, dynamic memory allocation, and being open source. Python can be used for data science, software development, artificial intelligence, web applications, and more. Popular Python IDEs include PyCharm, Spyder, and Jupyter Notebook. A sample Python code prints "hello world" or performs basic math operations like division and addition.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 20

INTRODUCTION

TO
PYTHON
AGENDA
History of Python
Why was python created?
Why do people use Python?
What can I do with python
Installing Python IDE
A Sample Code
Python code execution
HISTORY OF PYTHON
Python was invented by Guido van Rossum in 1991 at CWI(Centrum
voor Wiskunde en Informatica) in Netherland.
The idea of Python programming language has taken from the ABC
programming language .
we can say that ABC is a predecessor of Python language.
Guido van Rossum was a fan of the popular BBC comedy show of that
time, "Monty Python's Flying Circus".
So he decided to pick the name Python for his newly created
programming language.
WHY WAS PYTHON CREATED?
Guido van Rossum said that "My original motivation for creating Python
was the perceived need for a higher level language in the Amoeba
[Operating Systems] project.
I realized that the development of system administration utilities in C was
taking too long. Moreover, doing these things in the Bourne shell wouldn't
work for a variety of reasons. ...
So, there was a need for a language that would bridge the gap between C
and the shell"
-Guido Van Rossum
WHY DO PEOPLE USE PYTHON?
Python provides many useful features to the programmer.
These features make it most popular and widely used
language.
We have listed below few-essential feature of Python.
Easy to use and Learn
Expressive Language
Interpreted Language
Open Source Language
Dynamic Memory Allocation
WHAT CAN I DO WITH PYTHON
Data Science
Date Mining
Desktop Applications
Mobile Applications
Software Development
Artificial Intelligence
Web Applications
Enterprise Applications
3D CAD Applications
Machine Learning
INSTALLING PYTHON IDE
IDE stands for Integrated Development Environment.
It defined as a coding tool that helps to automate the process of editing,
compiling, testing, etc
It is specially designed for software development that consists of several tools
which is used for developing and testing the software.
1) PyCharm
2) Spyder
3) PyDev
4) Atom
5) Jupyter Notebook
6) Rodeo
7) Microsoft Visual Studio etc.
HOW TO INSTALL ANACONDA
ON WINDOWS?
Anaconda is an open-source software that contains Jupyter,
spyder, etc.
Jupyter is one of the most used for large data processing, data
analytics, heavy scientific computing.
Features :-
Supports markdowns
Easy creation and editing of codes
Ideal for beginners in data science
Head over to anaconda.com and install the latest version of
Anaconda.
Getting Started:
Getting through the License Agreement:
Select Installation Type: Select Just Me if you want the
software to be used by a single User
Choose Installation Location:
Advanced Installation Option:
Getting through the Installation Process:
Recommendation to Install Pycharm:
Finishing up the Installation:
Working with Anaconda:
A Sample Code

Examples:-
1:-print(“hello world”)
2:- 467/6
3:- 456+124

You might also like