KEMBAR78
Python Introduction | JNTUA | R19 | UNIT 1 | PPTX
Python Programming
Unit – I (Part I)
(Lecture 1)
Introduction
Introduction
Lecture 1 Lecture 2
Why python?
Interpretation
How to install
python?
The first program
Arithmetic
operators
Value and types
Introduction
Lecture 1
Why python?
Interpretation
How to install
python?
Why python?
Civil
Electrical
Mechanical
Electronics
Computer Science
Why python?
Civil
Population forecasting
Prediction of floods
Predicting traffic trends
Construction
management
Structural Engineering
Why python?
Civil
Electrical
Mechanical
Electronics
Computer Science
Electrical
Why python?
Automate Equipment
Test
Future power
generation
Future power
consumption
Automated billing
system
Power on / off system
Why python?
Civil
Electrical
Mechanical
Electronics
Computer Science
Mechanica
l
Why python?
Automating boring
work
Prediction of stress on
objects
Machine design
Simulation and
modeling
Drawing (Turtle
Modules)
Why python?
Civil
Electrical
Mechanical
Electronics
Computer Science
Electronic
s
Why python?
Signal processing
Image processing
Embedded systems
Internet of Things
Robotic designs
Why python?
Civil
Electrical
Mechanical
Electronics
Computer Science
Compute
r Science
Why python?
Data science
Computer vision
Artificial Intelligence
Web development
Audio & Video Applications
Why python?
Civil
Electrical
Mechanical
Electronics
Computer Science
Introduction
Lecture 1
Why python?
Interpretation
How to install
python?
Interpretation
Python is high level language.
High level
Language
Low level
Language
Interpreters
Compilers
Python is interpreter language.
Program that can analyze &
executes program line by line
Interpretation
Main( )
{
int a= 2;
int b= 3;
int c;
c = a + b;
}
This method is compilation
Object
code
Execute
Interpretation
Print (“hello world”)
Print(2)
A=2
B=3
Print(A+B)
Execute
Execute
Execute
Execute
Execute
This method is interpretation
Interpretation
Introduction
Lecture 1
Why python?
Interpretation
How to install
python?
How to install python?
Introduction
Lecture 1
Why python?
Interpretation
How to install
python?
Python Programming
Unit – I (Part I)
(Lecture 2)
Introduction
Introduction
Lecture 1 Lecture 2
Why python?
Interpretation
How to install
python?
The first program
Arithmetic
operators
Value and types
Introduction
Lecture 2
The first program
Arithmetic
operators
Value and types
The first program
Printing different datatypes.
print (2)
print (2.5)
print (‘Hello world’)
print (“ Today’s lecture”)
Introduction
Lecture 2
The first program
Arithmetic
operators
Value and types
Arithmetic operators
print (2 + 3)  Addition
print (2.5 - 3.5)  Subtraction
print (5*2) 
Multiplication
print (5/2)  Division
print (5//2)  Floor
division
print (5**2)  Exponent
print (5%2)  Modulus
Introduction
Lecture 2
The first program
Arithmetic
operators
Value and types
Value and types
type (2)
type (2.5)
type (“hello”)
Introduction
Lecture 2
The first program
Arithmetic
operators
Value and types
Python Programming
(Lecture 3)
Anaconda Navigator
Anaconda Navigator
Lecture 3
Why Anaconda?
Additional Applications
How to install Anaconda?
Anaconda
prompt
Jupyter lab Jupyter
Notebook
Qt console
Why Anaconda?
Edit and run
documents
while
describing
the data
analysis
Provides
multi-line
editing
with syntax
highlighting,
graphical tips,
and much
more
Unique
combination
editing,
analysis,
debugging,
and reporting
functionality
Environment
for
interactive
and
reproducible
computing
Enables the
Python
environment
by default.
Anaconda
prompt Jupyter lab
Jupyter
Notebook Qt console Spyder
Why Anaconda?
Anaconda Navigator
Lecture 3
Why Anaconda?
Additional Applications
How to install Anaconda?
Data mining
framework.
Data analysis
&
visualization
Use Python
more
efficiently in
big data
and
data science
projects.
Multi
dimensional
data
visualization
across files
RStudio is an
(IDE) for R
Programming
for statistical
computing
and graphics.
R studio Glueviz Orange PyCharm
Additional
Anaconda Navigator
Lecture 3
Why Anaconda?
Additional Applications
How to install Anaconda?
How to install Anaconda?
Anaconda Navigator
Lecture 3
Why Anaconda?
Additional Applications
How to install Anaconda?

Python Introduction | JNTUA | R19 | UNIT 1