SlideShare uma empresa Scribd logo
1 de 97
Python Programming
II Year- I Sem
R19 Regulation
(2020-2021)
By
G.V .Vidya Lakshmi ,
Assistant Professor,
Dept of IT
1
Objectives
The Objectives of Python Programming are
• To learn about Python programming language
syntax, semantics, and the runtime environment
• To be familiarized with universal computer
programming concepts like data types, containers
• To be familiarized with general computer
programming concepts like conditional execution
Loops & functions .
• To be familiarized with general coding techniques
and object-oriented programming
2
Course Outcomes
• Develop essential programming skills in
computer programming concepts like data
types, containers
• Apply the basics of programming in the
Python language
• Solve coding tasks related conditional
execution, loops
• Solve coding tasks related to the
fundamental notions and techniques used
in object-oriented programming
3
Syllabus
Unit 1: Introduction to Python
Unit 2: Control Statement, Strings and Text
Files
Unit 3: List and Dictionaries, Design with
Function
Unit 4: File Operations, Object Oriented
Programming
Unit 5: Errors and Exceptions, Graphical
User Interfaces
4
Introduction
5
Introduction
6
Introduction
7
Number of active programmers Most Popular in
Python Definition
8
Python is a
-general –purpose
-Object-oriented
-Portable
-Interpreted
-Interactive
-High level
-Scripting language.
History
9
Developed by Guido Von Rossum in 1989.
Features of Python
10
Features of Python
11
Simple and easy to learn
Features of Python
12
Simple and easy to learn
Comparing ‘Hello world’ program in C and Python
13
C- language
PYTHON
Features of Python
14
Free and open source
Features of Python
15
Portable
Features of Python
16
Features of Python
17
Interpreted
Compiled vs Interpreted
18
How Python Code is interpreted?
19
Features of Python
20
Embeddable and
Extendible
Features of Python
21
Object -Oriented
Features of Python
22
High Library
Features of Python
23
Features of Python
24
Applications of Python
25
•Scientific
Applications
•Data Visualization
•Game development
•Web Development
•GUI
Applications of Python
26
27
• Introduction to Python
• Program Development Cycle
• Input, Processing, and Output
• Displaying Output with the Print Function
• Comments, Variables, Reading Input from
the Keyboard
UNIT 1
Contents
UNIT 1
• Data Types
• Type conversions
• Expressions
• Operators.
• Using functions and Modules.
• Decision Structures and Boolean Logic
28
Contents
29
Introduction to Python
UNIT 1
30
Program Development Cycle
UNIT 1
1. Problem Definition
2. Problem Analysis
3. Algorithm Development
4. Coding & Documentation
5. Testing & Debugging
6. Maintenance
31
Program Development Cycle
UNIT 1
1. Problem Definition
2. Problem Analysis
3. Algorithm Development
4. Coding & Documentation
5. Testing & Debugging
6. Maintenance
32
Program Development Cycle
UNIT 1
1. Problem Definition
2. Problem Analysis
3. Algorithm Development
4. Coding & Documentation
5. Testing & Debugging
6. Maintenance
33
Program Development Cycle
UNIT 1
1. Problem Definition
2. Problem Analysis
3. Algorithm Development
4. Coding & Documentation
5. Testing & Debugging
6. Maintenance
34
Program Development Cycle
UNIT 1
1. Problem Definition
2. Problem Analysis
3. Algorithm Development
4. Coding & Documentation
5. Testing & Debugging
6. Maintenance
35
Program Development Cycle
UNIT 1
1. Problem Definition
2. Problem Analysis
3. Algorithm Development
4. Coding & Documentation
5. Testing & Debugging
6. Maintenance
36
Program Development Cycle
UNIT 1
1. Problem Definition
2. Problem Analysis
3. Algorithm Development
4. Coding & Documentation
5. Testing & Debugging
6. Maintenance
37
Program Development Cycle
UNIT 1
38
Input, Processing, and Output
UNIT 1
 Most useful programs accept inputs from some
source, process these inputs, and then finally output
results to some destination
39
Displaying Output with the Print Function
UNIT 1
 The programmer can also force the output of a
value by using the print function.
40
Displaying Output with the Print Function
UNIT 1
Syntax : print(<expression>)
>>> print('Hi there')
Hi there
41
Displaying Output with the Print Function
UNIT 1
 You can also write a print function that includes two or
more expression separated by commas.
Syntax : print(<expression>, … ,<expression>)
42
Displaying Output with the Print Function
UNIT 1
 Whether it outputs one or multiple expressions, the
print function always ends its output with a newline.
print(<expression>, end="")
43
Displaying Output with the Print Function
UNIT 1
44
Reading Input from the Keyboard
UNIT 1
As you create programs in Python, you’ll often want your
programs to ask the user for input. You can do this by using
the input function.
<variable identifier> = input(<a string prompt>)
45
Reading Input from the Keyboard
UNIT 1
>>> name = input(“Enter your name: “)
Enter your name: Ken Lambert
>>> name
'Ken Lambert'
>>> print(name) Ken Lambert
>>>
46
Reading Input from the Keyboard
UNIT 1
 The input function always builds a string .
 After inputting strings that represent numbers, the
programmer must convert them from strings to the
appropriate numeric types.
UNIT 1
Type conversions
47
To convert between types, you simply use
the type name as a function.
There are several built-in functions to
perform conversion from one data type to
another.
UNIT 1
Type conversions
48
Conversion Function Example Use Value Returned
int(<a number or a string>) int(3.77) 3
int("33") 33
float(<a number a string>) float(22) 22.0
str(<any value>) str(99) '99'
49
Comments
UNIT 1
 A hash sign (#)that is not inside a string literal is the
beginning of a comment.
All characters after the #, up to the end of the physical line,
are part of the comment and the Python interpreter ignores
them.
50
Comments
UNIT 1
#single line comments
#these are
# multiline
#comments
“““these are
multiline
Comments”””
These is are not executable statements.
Improves readability
51
Variables
UNIT 1
 Variables are nothing but reserved
memory locations to store values.
 It means that when you create a variable,
you reserve some space in the memory.
52
Variables
UNIT 1
Syntax : variable-name =value
•The declaration happens automatically when you
assign a value to a variable.
•The equal sign (=) is used to assign values to
variables.
53
Variables
UNIT 1
Assigning Values to Variables
counter = 100 # An integerassignment
miles = 1000.0 # A floating point
name = "John" # Astring
54
Variables
UNIT 1
Assigning Values to Variables-Multiple Assignment
Python allows you to assign a single value to several
variables simultaneously.
For example 1-
a = b = c = 1
a, b, c = 1, 2, "john"
For example 2-
UNIT 1
Data Types
55
• Let us read the sentence “ In 2007, Hanesha paid
$120,000 for her house at Maple street” .
•The above sentence contains number , name , time
and address.
•When we use data in a computer program , we
need to keep in mind the type of the data we are
using.
UNIT 1
Data Types
56
•A data type consists of set of values and set of
operations that can be performed on those values.
•A literal is the way a value of data type looks to a
programmer.
UNIT 1
Data Types
57
UNIT 1
Data Types
58
Numbers
 Number data types store numeric values.
 Python supports 4 different numerical
types-
1.integer
2.long
3.float
4.complex
UNIT 1
Data Types
59
Numbers - 1.integer
 Integer include ‘0’ , positive and
negative numbers.
Example: var1 = 1
var2 =-7
UNIT 1
Data Types
60
Numbers - 2.long
 Python allows you to use long int.
Long int can be indicated by ‘l’ or ‘L’ .
Example: var = 122L
UNIT 1
Data Types
61
Numbers - 3.float
 Floating numbers are the real numbers.
 These numbers contain fractional part.
Long int can be indicated by ‘l’ or ‘L’ .
Example: var = 15.20
UNIT 1
Data Types
62
Numbers - 4.complex
 Complex numbers contains two parts.
1.real
2.imaginary
Example:
var = 3.14j
UNIT 1
Data Types
63
Strings(Character sets)
 In Python ,characters and strings both
are treated as Strings.
A string is a sequence of characters.
Example:
C=‘hello’
S=“ hello world”
UNIT 1
Data Types
64
Strings(Character sets)
 To output a paragraph we have to place
it in triple quotes.
Example:
C=“””hello
hello world”””
UNIT 1
Data Types
65
Strings(Character sets)
String concatenation can be performed
using ‘+’
Example:
The operator ‘*’ allows us to build a string by
repeating another string a given number of times.
Example:
C=‘hello’ +’world’
“ h“*5+”Python”
hhhhhPython
UNIT 1
Operators
66
Operators are used in programs to
manipulate variables and values.
The values on which operators perform
operations are called operands.
UNIT 1
Operators
67
19 + 24
Operand Operand
Operator
UNIT 1
Operators
68
UNIT 1
Operators
69
UNIT 1
Arithmetic Operators
70
Operator Example
+ Addition a + b = 30
- Subtraction a – b = -10
* Multiplication a * b = 200
/ Division b / a = 2
% Modulus b % a = 0
** Exponent a**b =10 to the power 20
// 9//2 = 4 and 9.0//2.0 = 4.0,
-11//3 = -4, -11.0//3 = -4.0
Assume variable a holds 10 and variable b holds 20
UNIT 1
71
Relational Operators
UNIT 1
72
Relational Operators
Operator Example
== (a == b) is not true.
!= (a != b) is true.
<> (a <> b) is true. This is similar to != operator.
> (a > b) is not true.
< (a < b) is true.
>= (a >= b) is not true.
<= (a <= b) is true.
Assume variable a holds 10 and variable b holds 20
UNIT 1
73
Assignment Operators
UNIT 1
74
Assignment Operators
Operator Example
= c = a + b assigns value of a + b into c
+= Add AND c += a is equivalent to c = c + a
-= Subtract AND c -= a is equivalent to c = c - a
*= Multiply AND c *= a is equivalent to c = c * a
/= Divide AND c /= a is equivalent to c = c / a
%= Modulus AND c %= a is equivalent to c = c % a
**= Exponent AND
c **= a is equivalent to c = c ** a
//= Floor Division c //= a is equivalent to c = c // a
Assume variable a holds 10 and variable b holds 20
UNIT 1
75
Logical Operators
UNIT 1
76
Logical Operators
Operator Example
and Logical AND (a and b) is true.
or Logical OR (a or b) is true.
not Logical NOT Not(a and b) is false.
Assume variable a holds 10 and variable b holds 20
UNIT 1
77
Bitwise Operators
UNIT 1
78
Bitwise Operators
Operator Example
& Binary AND (a & b) (means 0000 1100)
| Binary OR (a | b) = 61 (means 0011 1101)
^ Binary XOR (a ^ b) = 49 (means 0011 0001)
~ Binary Ones
Complement
(~a ) = -61 (means 1100 0011 in 2's complement
form due to a signed binary number.
<< Binary Left
Shift a << 2 = 240 (means 1111 0000)
>> Binary
Right Shift a >> 2 = 15 (means 0000 1111)
Assume if a = 60; and b = 13; Now in the binary format their values will
be 0011 1100 and 0000 1101 respectively.
UNIT 1
79
Membership Operators
UNIT 1
80
Identity Operators
UNIT 1
81
Identity Operators
Operator Example
is x is y, here is results in 1 if id(x) equals id(y).
is not
x is not y, here is not results in 1 if id(x) is not equal to
id(y).
UNIT 1
Using functions
82
The Python interpreter has a number of functions and types
built into it that are always available.
1. abs() returns the absolute value of a number.
A negative value’s absolute is that value is positive.
>>> abs(-7)
7
2. any() it takes one argument and returns True
if, even one value in the iterable has a Boolean value of
True.
>>> any((1,0,0))
True
3.type() function to check the type of object we’re dealing with.
>>> type((1))
<class ‘int’>
UNIT 1
Using Modules.
83
To import module the syntax:
import module-name
To import particular resource in module the syntax is:
from module-name import resource1,resource2….
UNIT 1
Using Modules-Example
84
To import module Example:
import math
To import particular resource in module the example
is:
from math import pi,sqrt
UNIT 1
Decision Structures
85
Decision structures evaluate multiple
expressions which produce True or False as
outcome.
Statement Description
if statements
if statement consists of a boolean
expression followed by one or more
statements.
if...else
statements
if statement can be followed by an optional
else statement, which executes when the
boolean expression is FALSE.
nested if
statements
You can use one if or else if statement inside
another if or else if statement(s).
UNIT 1
Decision Structures – if statement
86
Expression
Body of if
Statement after if
UNIT 1
Decision Structures –if statement
87
Syntax:
if Condition:
Statements
UNIT 1
Decision Structures –if-else tatement
88
UNIT 1
Decision Structures –if-else tatement
89
Syntax:
if Condition:
Statements
else:
Statements
UNIT 1
Decision Structures nested if
90
UNIT 1
Repetition Structures Loops
91
A loop statement allows us to execute a
statement or group of statements multiple
times.
Loop
Type
Description
while
loop
Repeats a statement or group of statements while a given
condition is TRUE. It tests the condition before executing the
loop body.
for loop
Executes a sequence of statements multiple times and
abbreviates the code that manages the loop variable.
nested
loops
You can use one or more loop inside any another while, for
loop.
UNIT 1
Repetition Structures –for loop
92
UNIT 1
Repetition Structures –for loop
93
for variable in sequence:
Statements
UNIT 1
Repetition Structures –while loop
94
UNIT 1
Repetition Structures –while loop
95
Syntax:
while Condition:
Statements
UNIT 1
Decision Structures and Boolean Logic
96
UNIT 1
• Data Types
• Type conversions
• Expressions
• Operators.
• Using functions and Modules.
• Decision Structures and Boolean Logic
97

Mais conteúdo relacionado

Semelhante a Presentation1 (1).pptx

C programming language
C programming languageC programming language
C programming languageAbin Rimal
 
Lecture1_introduction to python.pptx
Lecture1_introduction to python.pptxLecture1_introduction to python.pptx
Lecture1_introduction to python.pptxMohammedAlYemeni1
 
Introduction to python programming ( part-1)
Introduction to python programming  ( part-1)Introduction to python programming  ( part-1)
Introduction to python programming ( part-1)Ziyauddin Shaik
 
Python Basics by Akanksha Bali
Python Basics by Akanksha BaliPython Basics by Akanksha Bali
Python Basics by Akanksha BaliAkanksha Bali
 
Automation Testing theory notes.pptx
Automation Testing theory notes.pptxAutomation Testing theory notes.pptx
Automation Testing theory notes.pptxNileshBorkar12
 
C programming for Computing Techniques
C programming for Computing TechniquesC programming for Computing Techniques
C programming for Computing TechniquesAppili Vamsi Krishna
 
Programming in C [Module One]
Programming in C [Module One]Programming in C [Module One]
Programming in C [Module One]Abhishek Sinha
 
Chap_________________1_Introduction.pptx
Chap_________________1_Introduction.pptxChap_________________1_Introduction.pptx
Chap_________________1_Introduction.pptxRonaldo Aditya
 
Python_Haegl.powerpoint presentation. tx
Python_Haegl.powerpoint presentation. txPython_Haegl.powerpoint presentation. tx
Python_Haegl.powerpoint presentation. txvishwanathgoudapatil1
 
ESCM303 Introduction to Python Programming.pptx
ESCM303 Introduction to Python Programming.pptxESCM303 Introduction to Python Programming.pptx
ESCM303 Introduction to Python Programming.pptxAvijitChaudhuri3
 

Semelhante a Presentation1 (1).pptx (20)

C programming language
C programming languageC programming language
C programming language
 
Algorithm.pdf
Algorithm.pdfAlgorithm.pdf
Algorithm.pdf
 
Python
PythonPython
Python
 
C program
C programC program
C program
 
Lecture1_introduction to python.pptx
Lecture1_introduction to python.pptxLecture1_introduction to python.pptx
Lecture1_introduction to python.pptx
 
Introduction to python programming ( part-1)
Introduction to python programming  ( part-1)Introduction to python programming  ( part-1)
Introduction to python programming ( part-1)
 
Python Basics by Akanksha Bali
Python Basics by Akanksha BaliPython Basics by Akanksha Bali
Python Basics by Akanksha Bali
 
Python4HPC.pptx
Python4HPC.pptxPython4HPC.pptx
Python4HPC.pptx
 
C material
C materialC material
C material
 
c-programming
c-programmingc-programming
c-programming
 
Automation Testing theory notes.pptx
Automation Testing theory notes.pptxAutomation Testing theory notes.pptx
Automation Testing theory notes.pptx
 
C programming for Computing Techniques
C programming for Computing TechniquesC programming for Computing Techniques
C programming for Computing Techniques
 
Programming in C [Module One]
Programming in C [Module One]Programming in C [Module One]
Programming in C [Module One]
 
Chap_________________1_Introduction.pptx
Chap_________________1_Introduction.pptxChap_________________1_Introduction.pptx
Chap_________________1_Introduction.pptx
 
Python_Haegl.powerpoint presentation. tx
Python_Haegl.powerpoint presentation. txPython_Haegl.powerpoint presentation. tx
Python_Haegl.powerpoint presentation. tx
 
chapter_5_ppt_em_220247.pptx
chapter_5_ppt_em_220247.pptxchapter_5_ppt_em_220247.pptx
chapter_5_ppt_em_220247.pptx
 
intro to c
intro to cintro to c
intro to c
 
ESCM303 Introduction to Python Programming.pptx
ESCM303 Introduction to Python Programming.pptxESCM303 Introduction to Python Programming.pptx
ESCM303 Introduction to Python Programming.pptx
 
lecture 2.pptx
lecture 2.pptxlecture 2.pptx
lecture 2.pptx
 
#Code2 create c++ for beginners
#Code2 create  c++ for beginners #Code2 create  c++ for beginners
#Code2 create c++ for beginners
 

Último

Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxDeepakSakkari2
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxwendy cai
 
Introduction-To-Agricultural-Surveillance-Rover.pptx
Introduction-To-Agricultural-Surveillance-Rover.pptxIntroduction-To-Agricultural-Surveillance-Rover.pptx
Introduction-To-Agricultural-Surveillance-Rover.pptxk795866
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidNikhilNagaraju
 
An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...Chandu841456
 
Comparative Analysis of Text Summarization Techniques
Comparative Analysis of Text Summarization TechniquesComparative Analysis of Text Summarization Techniques
Comparative Analysis of Text Summarization Techniquesugginaramesh
 
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETEINFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETEroselinkalist12
 
complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...asadnawaz62
 
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)dollysharma2066
 
Introduction to Machine Learning Unit-3 for II MECH
Introduction to Machine Learning Unit-3 for II MECHIntroduction to Machine Learning Unit-3 for II MECH
Introduction to Machine Learning Unit-3 for II MECHC Sai Kiran
 
Application of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptxApplication of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptx959SahilShah
 
computer application and construction management
computer application and construction managementcomputer application and construction management
computer application and construction managementMariconPadriquez1
 
Arduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.pptArduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.pptSAURABHKUMAR892774
 
Churning of Butter, Factors affecting .
Churning of Butter, Factors affecting  .Churning of Butter, Factors affecting  .
Churning of Butter, Factors affecting .Satyam Kumar
 
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdfCCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdfAsst.prof M.Gokilavani
 
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort servicejennyeacort
 
Electronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfElectronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfme23b1001
 
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfCCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfAsst.prof M.Gokilavani
 

Último (20)

Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptx
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptx
 
Introduction-To-Agricultural-Surveillance-Rover.pptx
Introduction-To-Agricultural-Surveillance-Rover.pptxIntroduction-To-Agricultural-Surveillance-Rover.pptx
Introduction-To-Agricultural-Surveillance-Rover.pptx
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfid
 
An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...
 
Comparative Analysis of Text Summarization Techniques
Comparative Analysis of Text Summarization TechniquesComparative Analysis of Text Summarization Techniques
Comparative Analysis of Text Summarization Techniques
 
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETEINFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
 
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Serviceyoung call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
 
complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...
 
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
 
Introduction to Machine Learning Unit-3 for II MECH
Introduction to Machine Learning Unit-3 for II MECHIntroduction to Machine Learning Unit-3 for II MECH
Introduction to Machine Learning Unit-3 for II MECH
 
Application of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptxApplication of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptx
 
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
 
computer application and construction management
computer application and construction managementcomputer application and construction management
computer application and construction management
 
Arduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.pptArduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.ppt
 
Churning of Butter, Factors affecting .
Churning of Butter, Factors affecting  .Churning of Butter, Factors affecting  .
Churning of Butter, Factors affecting .
 
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdfCCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
 
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
 
Electronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfElectronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdf
 
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfCCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
 

Presentation1 (1).pptx