SlideShare a Scribd company logo
Basics of Python
Python
Version-3
Index
1. Types
2. Expressions and Variables
3. String operations
4. Input and output
5. Lists and Tuples
6. Dictionaries
7. Sets
8. Conditions and Branching
9. Loops
10. Functions
11. Objects and Classes
PYTHON TYPES
Python Types 11 # integer
Python Types 11 # integer
561.73 # Float
Python Types 11 # integer
561.73 # Float
“Hello!” # String
Python Types Type function:
type(Expression) Datatype
Python Types Type function:
type(11)  Integer
type(561.73)  Float
type(“Hello!”)  String
Python Types Type Casting:
Type casting is a process of
converting one data type into
another data type.
Python Types Type Casting : Examples
float(11)  11.0
int(561.23)  561
int(“Hello!”)  Error
int(“15”)  15
str(1.25)  “1.25”
Python Types Type Boolean :
True
False
Python Types Type Boolean :
type(True)  bool
type(False)  bool
int(True)  1
bool(1)  True
PYTHON
EXPRESSIONS AND
VARIABLES
Expressions
and
Variables
Expressions :
Expressions describe a type of operations
that computers perform.
Expressions are operations the python
performs, for example, basic arithmetic
operations like adding multiple numbers.
Expressions
and
Variables
Expressions :
Example-1 :
1+2+3+4-5+6+7+8+9+10 = 45
Here,
1 to 10  Operands
+, -  Operators
Expressions
and
Variables
Expressions :
Example-2:
10*6 = 60
Example-3:
20/4 = 5.0  This is regular division
20//4 = 5  This is called integer division
Expressions
and
Variables
Variables :
Variables can be used to store values and
to perform operations.
In python we need not initialize variables
with their datatypes and is automatically
type casted when required.
Expressions
and
Variables
Variables :
Example-1:
A = 5
B = 20
C = A*B-50
Value of C  50
Expressions
and
Variables
Variables :
Example-2:
A = 5+20+25
B = A-15
Value of A  50
Value of B  35
Expressions
and
Variables
Variables :
Example-3:
A = 25
A = A*4
Value of A  100
PYTHON
STRINGS
Strings  In Python, a string is a sequence of characters.
 A string is contained within two quotes. We
can also use single quotes.
 A string can be spaces or digits.
 A string can also be special characters.
 We can bind or assign a string to another
variable.
 It is helpful to think of a string as an ordered
sequence.
Strings Example:
String1 = “Machine Learning”
or
‘Machine Learning’
Strings Example:
String1 = “Machine Learning”
or
‘Machine Learning’
+ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
- -16 -15 -14 -13 -12 -11 -10 -9 -8 -7 -6 -5 -4 -3 -2 -1
M a c h i n e L e a r n i n g
Strings Example:
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
Now,
String1[0]  “M”
String1[8]  “L”
String1[-13]  “h”
M a c h i n e L e a r n i n g
Strings Example:
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
String slicing
String1[0:4]  “Mach”
String1[8:12]  “Lear”
String stride
String1[::2]  “McieLann”
String1[0:9:2]  “McieL”
M a c h i n e L e a r n i n g
Strings Example:
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
String Length function
len(“String1”)  15
String manipulations
String2 = String1 + “with Python”
String2  “Machine Learning with Python”
String3 = 2*String1
String3  “Machine Learning Machine Learning”
M a c h i n e L e a r n i n g
Strings Example:
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
Strings are immutable
We cannot change the value of a string.
String1[0] = “F”
M a c h i n e L e a r n i n g
Strings Example:
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
Escape sequences:
n  For a new line
t  For a new tab space
M a c h i n e L e a r n i n g
Strings Example:
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
Escape sequences:
Examples:
print(“Machine n Learning”)
Output  Machine
Learning
print(“Machine t Learning”)
Output  Machine Learning
M a c h i n e L e a r n i n g
Strings String Methods:
Python has a set of built-in methods that you can use
on strings.
All string methods returns new values.
They do not change the original string.
Let’s suppose two strings ‘A’ and ‘B’
A  Method  B
Strings String Methods:
Example - 1:
A = “Machine Learning with Python”
Let’s try method “upper”
B = A.upper()
print(B)
Output
MACHINE LEARNING WITH PYTHON
Strings String Methods:
Example - 2:
A = “Machine Learning with Python”
Let’s try method “replace”
B =A.replace(‘Python’, ‘R’)
print(B)
Output
MACHINE LEARNING WITH R
Inputs
And
Outputs
Taking inputs
We can use “input()” to take inputs.
But in python 3, default type of the value taken as input is
string.
So if we want to take any other data type inputs, we must
specify it.
And for outputs we can simply use print statement.
Inputs
And
Outputs
Example:
String_input = input()
print(String_input)
Integer_input = int(input())
print(Integer_input)
print(Integer_input + 1)
Float_input = float(input())
print(Float_input)
PYTHON
Lists and Tuples
Python
Lists and
Tuples
Tuples:
In python tuples are an ordered
sequences.
Tuples are immutable.
They are written as comma-separated
values.
Tuples can be nested
Example:
Exampletuple=(1,9,6,8)
Python
Lists and
Tuples
Tuples:
All the three data types in python can be
contained in tuples.
Example
tuple2=(‘ML’, 1, 95.68)
Type of any tuple is the same
type(tuple2)  tuple
Python
Lists and
Tuples
Lists:
In python lists are an ordered sequences
and is represented in square brackets.
Lists are very similar to tuples
Only difference between lists and tuples
is that lists are mutable
Example:
L=[“Machine Learning”, 10 ,5.2]
Python
Lists and
Tuples
Lists:
We can nest lists into lists.
We can also nest tuples into lists
Example:
L=[“Machine Learning”, [10 ,5.2], (“A”,1)]
PYTHON
Dictionaries
Python
Dictionaries
Dictionaries:
Dictionaries are a type of collection in
Python.
These are like addresses.
A dictionary has keys and values.
The keys are like addresses but they
don't have to be integers and are usually
characters.
Python
Dictionaries
Dictionaries:
The values are similar to the element in a
list and contain information.
To create a dictionary, we use curly
brackets.
Keys must be immutable and unique.
Each key is followed by a value separated
by a colon.
Python
Dictionaries
Dictionaries:
Python
Dictionaries
Dictionaries:
The values can be immutable, mutable,
and duplicates.
Each key and value pair is separated by a
comma.
PYTHON
Sets
Python
Sets
Sets:
Sets are a type of collection of elements.
Unlike lists and tuples, these are
unordered.
These only have unique elements.
Sets are represented using curly
brackets.
Python
Sets
Sets:
Example:
Set1={“A”, “AI”, “ML”, “A”, “B”}
Set1 is stored as
Set1 {“A”, “AI”, “ML”, “B”}
Python
Sets
Sets:
We can also convert a list into a set. This
process is called type casting.
Using:
set_list=set(nameofthelist)
Python
Sets
Sets:
Set operations:
 Add
 Remove
 In – True/False
 Union
 Intersection
PYTHON
Conditions and Branching
Conditions
and Branching
Conditions are branching :
1. If
2. Elif
3. else
Conditions
and Branching
Conditions are branching :
PYTHON
Loops
Loops Loops:
1. For
2. While
Loops Loops: for
Loops Loops: while
PYTHON
Functions
Functions Functions are blocks of code which can
be used on a call.
Python consists of many inbuilt
functions.
Functions can also be defined by the
user
Functions Example:
Range function-
PYTHON
Objects and Classes
Objects and
Classes
Objects in programming are like objects
in real life.
Like life, there are different classes of
objects.
Instances of a Class: Objects and
Attributes
An instance of an object is the realisation
of a class
Thank You
Ad

More Related Content

What's hot (20)

Python 101++: Let's Get Down to Business!
Python 101++: Let's Get Down to Business!Python 101++: Let's Get Down to Business!
Python 101++: Let's Get Down to Business!
Paige Bailey
 
Variables In Php 1
Variables In Php 1Variables In Php 1
Variables In Php 1
Digital Insights - Digital Marketing Agency
 
Matlab and Python: Basic Operations
Matlab and Python: Basic OperationsMatlab and Python: Basic Operations
Matlab and Python: Basic Operations
Wai Nwe Tun
 
Datatypes in python
Datatypes in pythonDatatypes in python
Datatypes in python
eShikshak
 
Python for Beginners(v1)
Python for Beginners(v1)Python for Beginners(v1)
Python for Beginners(v1)
Panimalar Engineering College
 
An introduction to Python for absolute beginners
An introduction to Python for absolute beginnersAn introduction to Python for absolute beginners
An introduction to Python for absolute beginners
Kálmán "KAMI" Szalai
 
Python Traning presentation
Python Traning presentationPython Traning presentation
Python Traning presentation
Nimrita Koul
 
Learn python - for beginners - part-2
Learn python - for beginners - part-2Learn python - for beginners - part-2
Learn python - for beginners - part-2
RajKumar Rampelli
 
Programming in Python
Programming in Python Programming in Python
Programming in Python
Tiji Thomas
 
Python 101 1
Python 101   1Python 101   1
Python 101 1
Iccha Sethi
 
Introduction to Python programming
Introduction to Python programmingIntroduction to Python programming
Introduction to Python programming
Damian T. Gordon
 
Python 101: Python for Absolute Beginners (PyTexas 2014)
Python 101: Python for Absolute Beginners (PyTexas 2014)Python 101: Python for Absolute Beginners (PyTexas 2014)
Python 101: Python for Absolute Beginners (PyTexas 2014)
Paige Bailey
 
Python Workshop
Python  Workshop Python  Workshop
Python Workshop
Assem CHELLI
 
Let’s Learn Python An introduction to Python
Let’s Learn Python An introduction to Python Let’s Learn Python An introduction to Python
Let’s Learn Python An introduction to Python
Jaganadh Gopinadhan
 
Introduction to Python - Part Two
Introduction to Python - Part TwoIntroduction to Python - Part Two
Introduction to Python - Part Two
amiable_indian
 
Python- strings
Python- stringsPython- strings
Python- strings
Krishna Nanda
 
Python
PythonPython
Python
Gagandeep Nanda
 
Python and sysadmin I
Python and sysadmin IPython and sysadmin I
Python and sysadmin I
Guixing Bai
 
Programming Under Linux In Python
Programming Under Linux In PythonProgramming Under Linux In Python
Programming Under Linux In Python
Marwan Osman
 
Basic Python Programming: Part 01 and Part 02
Basic Python Programming: Part 01 and Part 02Basic Python Programming: Part 01 and Part 02
Basic Python Programming: Part 01 and Part 02
Fariz Darari
 
Python 101++: Let's Get Down to Business!
Python 101++: Let's Get Down to Business!Python 101++: Let's Get Down to Business!
Python 101++: Let's Get Down to Business!
Paige Bailey
 
Matlab and Python: Basic Operations
Matlab and Python: Basic OperationsMatlab and Python: Basic Operations
Matlab and Python: Basic Operations
Wai Nwe Tun
 
Datatypes in python
Datatypes in pythonDatatypes in python
Datatypes in python
eShikshak
 
An introduction to Python for absolute beginners
An introduction to Python for absolute beginnersAn introduction to Python for absolute beginners
An introduction to Python for absolute beginners
Kálmán "KAMI" Szalai
 
Python Traning presentation
Python Traning presentationPython Traning presentation
Python Traning presentation
Nimrita Koul
 
Learn python - for beginners - part-2
Learn python - for beginners - part-2Learn python - for beginners - part-2
Learn python - for beginners - part-2
RajKumar Rampelli
 
Programming in Python
Programming in Python Programming in Python
Programming in Python
Tiji Thomas
 
Introduction to Python programming
Introduction to Python programmingIntroduction to Python programming
Introduction to Python programming
Damian T. Gordon
 
Python 101: Python for Absolute Beginners (PyTexas 2014)
Python 101: Python for Absolute Beginners (PyTexas 2014)Python 101: Python for Absolute Beginners (PyTexas 2014)
Python 101: Python for Absolute Beginners (PyTexas 2014)
Paige Bailey
 
Let’s Learn Python An introduction to Python
Let’s Learn Python An introduction to Python Let’s Learn Python An introduction to Python
Let’s Learn Python An introduction to Python
Jaganadh Gopinadhan
 
Introduction to Python - Part Two
Introduction to Python - Part TwoIntroduction to Python - Part Two
Introduction to Python - Part Two
amiable_indian
 
Python and sysadmin I
Python and sysadmin IPython and sysadmin I
Python and sysadmin I
Guixing Bai
 
Programming Under Linux In Python
Programming Under Linux In PythonProgramming Under Linux In Python
Programming Under Linux In Python
Marwan Osman
 
Basic Python Programming: Part 01 and Part 02
Basic Python Programming: Part 01 and Part 02Basic Python Programming: Part 01 and Part 02
Basic Python Programming: Part 01 and Part 02
Fariz Darari
 

Similar to Basics of python 3 (20)

11 Unit 1 Chapter 02 Python Fundamentals
11  Unit 1 Chapter 02 Python Fundamentals11  Unit 1 Chapter 02 Python Fundamentals
11 Unit 1 Chapter 02 Python Fundamentals
Praveen M Jigajinni
 
ADST university of Sussex foundation class
ADST university of Sussex foundation classADST university of Sussex foundation class
ADST university of Sussex foundation class
MarufFarhanRigan1
 
Python Revision Tour.pptx class 12 python notes
Python Revision Tour.pptx class 12 python notesPython Revision Tour.pptx class 12 python notes
Python Revision Tour.pptx class 12 python notes
student164700
 
Chapter - 2.pptx
Chapter - 2.pptxChapter - 2.pptx
Chapter - 2.pptx
MikialeTesfamariam
 
Python Interview Questions PDF By ScholarHat.pdf
Python Interview Questions PDF By ScholarHat.pdfPython Interview Questions PDF By ScholarHat.pdf
Python Interview Questions PDF By ScholarHat.pdf
Scholarhat
 
Python cheat-sheet
Python cheat-sheetPython cheat-sheet
Python cheat-sheet
srinivasanr281952
 
AI_2nd Lab.pptx
AI_2nd Lab.pptxAI_2nd Lab.pptx
AI_2nd Lab.pptx
MohammedAlYemeni1
 
Basic of Python- Hands on Session
Basic of Python- Hands on SessionBasic of Python- Hands on Session
Basic of Python- Hands on Session
Dharmesh Tank
 
Python variables and data types.pptx
Python variables and data types.pptxPython variables and data types.pptx
Python variables and data types.pptx
AkshayAggarwal79
 
Chapter 9 python fundamentals
Chapter 9 python fundamentalsChapter 9 python fundamentals
Chapter 9 python fundamentals
Praveen M Jigajinni
 
Core Concept_Python.pptx
Core Concept_Python.pptxCore Concept_Python.pptx
Core Concept_Python.pptx
Ashwini Raut
 
Python revision tour II
Python revision tour IIPython revision tour II
Python revision tour II
Mr. Vikram Singh Slathia
 
unit1 python.pptx
unit1 python.pptxunit1 python.pptx
unit1 python.pptx
TKSanthoshRao
 
Learn about Python power point presentation
Learn about Python power point presentationLearn about Python power point presentation
Learn about Python power point presentation
omsumukh85
 
11 Introduction to lists.pptx
11 Introduction to lists.pptx11 Introduction to lists.pptx
11 Introduction to lists.pptx
ssuser8e50d8
 
23UCACC11 Python Programming (MTNC) (BCA)
23UCACC11 Python Programming (MTNC) (BCA)23UCACC11 Python Programming (MTNC) (BCA)
23UCACC11 Python Programming (MTNC) (BCA)
ssuser7f90ae
 
Python slide.1
Python slide.1Python slide.1
Python slide.1
Aswin Krishnamoorthy
 
CS 360 LAB 3 STRINGS, FUNCTIONS, AND METHODSObjective The purpos.docx
CS 360 LAB 3 STRINGS, FUNCTIONS, AND METHODSObjective The purpos.docxCS 360 LAB 3 STRINGS, FUNCTIONS, AND METHODSObjective The purpos.docx
CS 360 LAB 3 STRINGS, FUNCTIONS, AND METHODSObjective The purpos.docx
faithxdunce63732
 
Programming with Python
Programming with PythonProgramming with Python
Programming with Python
Rasan Samarasinghe
 
Notes3
Notes3Notes3
Notes3
hccit
 
11 Unit 1 Chapter 02 Python Fundamentals
11  Unit 1 Chapter 02 Python Fundamentals11  Unit 1 Chapter 02 Python Fundamentals
11 Unit 1 Chapter 02 Python Fundamentals
Praveen M Jigajinni
 
ADST university of Sussex foundation class
ADST university of Sussex foundation classADST university of Sussex foundation class
ADST university of Sussex foundation class
MarufFarhanRigan1
 
Python Revision Tour.pptx class 12 python notes
Python Revision Tour.pptx class 12 python notesPython Revision Tour.pptx class 12 python notes
Python Revision Tour.pptx class 12 python notes
student164700
 
Python Interview Questions PDF By ScholarHat.pdf
Python Interview Questions PDF By ScholarHat.pdfPython Interview Questions PDF By ScholarHat.pdf
Python Interview Questions PDF By ScholarHat.pdf
Scholarhat
 
Basic of Python- Hands on Session
Basic of Python- Hands on SessionBasic of Python- Hands on Session
Basic of Python- Hands on Session
Dharmesh Tank
 
Python variables and data types.pptx
Python variables and data types.pptxPython variables and data types.pptx
Python variables and data types.pptx
AkshayAggarwal79
 
Core Concept_Python.pptx
Core Concept_Python.pptxCore Concept_Python.pptx
Core Concept_Python.pptx
Ashwini Raut
 
Learn about Python power point presentation
Learn about Python power point presentationLearn about Python power point presentation
Learn about Python power point presentation
omsumukh85
 
11 Introduction to lists.pptx
11 Introduction to lists.pptx11 Introduction to lists.pptx
11 Introduction to lists.pptx
ssuser8e50d8
 
23UCACC11 Python Programming (MTNC) (BCA)
23UCACC11 Python Programming (MTNC) (BCA)23UCACC11 Python Programming (MTNC) (BCA)
23UCACC11 Python Programming (MTNC) (BCA)
ssuser7f90ae
 
CS 360 LAB 3 STRINGS, FUNCTIONS, AND METHODSObjective The purpos.docx
CS 360 LAB 3 STRINGS, FUNCTIONS, AND METHODSObjective The purpos.docxCS 360 LAB 3 STRINGS, FUNCTIONS, AND METHODSObjective The purpos.docx
CS 360 LAB 3 STRINGS, FUNCTIONS, AND METHODSObjective The purpos.docx
faithxdunce63732
 
Notes3
Notes3Notes3
Notes3
hccit
 
Ad

Recently uploaded (20)

Understanding P–N Junction Semiconductors: A Beginner’s Guide
Understanding P–N Junction Semiconductors: A Beginner’s GuideUnderstanding P–N Junction Semiconductors: A Beginner’s Guide
Understanding P–N Junction Semiconductors: A Beginner’s Guide
GS Virdi
 
03#UNTAGGED. Generosity in architecture.
03#UNTAGGED. Generosity in architecture.03#UNTAGGED. Generosity in architecture.
03#UNTAGGED. Generosity in architecture.
MCH
 
To study Digestive system of insect.pptx
To study Digestive system of insect.pptxTo study Digestive system of insect.pptx
To study Digestive system of insect.pptx
Arshad Shaikh
 
"Basics of Heterocyclic Compounds and Their Naming Rules"
"Basics of Heterocyclic Compounds and Their Naming Rules""Basics of Heterocyclic Compounds and Their Naming Rules"
"Basics of Heterocyclic Compounds and Their Naming Rules"
rupalinirmalbpharm
 
How to track Cost and Revenue using Analytic Accounts in odoo Accounting, App...
How to track Cost and Revenue using Analytic Accounts in odoo Accounting, App...How to track Cost and Revenue using Analytic Accounts in odoo Accounting, App...
How to track Cost and Revenue using Analytic Accounts in odoo Accounting, App...
Celine George
 
Engage Donors Through Powerful Storytelling.pdf
Engage Donors Through Powerful Storytelling.pdfEngage Donors Through Powerful Storytelling.pdf
Engage Donors Through Powerful Storytelling.pdf
TechSoup
 
Herbs Used in Cosmetic Formulations .pptx
Herbs Used in Cosmetic Formulations .pptxHerbs Used in Cosmetic Formulations .pptx
Herbs Used in Cosmetic Formulations .pptx
RAJU THENGE
 
One Hot encoding a revolution in Machine learning
One Hot encoding a revolution in Machine learningOne Hot encoding a revolution in Machine learning
One Hot encoding a revolution in Machine learning
momer9505
 
Kenan Fellows Participants, Projects 2025-26 Cohort
Kenan Fellows Participants, Projects 2025-26 CohortKenan Fellows Participants, Projects 2025-26 Cohort
Kenan Fellows Participants, Projects 2025-26 Cohort
EducationNC
 
World war-1(Causes & impacts at a glance) PPT by Simanchala Sarab(BABed,sem-4...
World war-1(Causes & impacts at a glance) PPT by Simanchala Sarab(BABed,sem-4...World war-1(Causes & impacts at a glance) PPT by Simanchala Sarab(BABed,sem-4...
World war-1(Causes & impacts at a glance) PPT by Simanchala Sarab(BABed,sem-4...
larencebapu132
 
THE STG QUIZ GROUP D.pptx quiz by Ridip Hazarika
THE STG QUIZ GROUP D.pptx   quiz by Ridip HazarikaTHE STG QUIZ GROUP D.pptx   quiz by Ridip Hazarika
THE STG QUIZ GROUP D.pptx quiz by Ridip Hazarika
Ridip Hazarika
 
Operations Management (Dr. Abdulfatah Salem).pdf
Operations Management (Dr. Abdulfatah Salem).pdfOperations Management (Dr. Abdulfatah Salem).pdf
Operations Management (Dr. Abdulfatah Salem).pdf
Arab Academy for Science, Technology and Maritime Transport
 
To study the nervous system of insect.pptx
To study the nervous system of insect.pptxTo study the nervous system of insect.pptx
To study the nervous system of insect.pptx
Arshad Shaikh
 
How to Set warnings for invoicing specific customers in odoo
How to Set warnings for invoicing specific customers in odooHow to Set warnings for invoicing specific customers in odoo
How to Set warnings for invoicing specific customers in odoo
Celine George
 
pulse ppt.pptx Types of pulse , characteristics of pulse , Alteration of pulse
pulse  ppt.pptx Types of pulse , characteristics of pulse , Alteration of pulsepulse  ppt.pptx Types of pulse , characteristics of pulse , Alteration of pulse
pulse ppt.pptx Types of pulse , characteristics of pulse , Alteration of pulse
sushreesangita003
 
apa-style-referencing-visual-guide-2025.pdf
apa-style-referencing-visual-guide-2025.pdfapa-style-referencing-visual-guide-2025.pdf
apa-style-referencing-visual-guide-2025.pdf
Ishika Ghosh
 
GDGLSPGCOER - Git and GitHub Workshop.pptx
GDGLSPGCOER - Git and GitHub Workshop.pptxGDGLSPGCOER - Git and GitHub Workshop.pptx
GDGLSPGCOER - Git and GitHub Workshop.pptx
azeenhodekar
 
Real GitHub Copilot Exam Dumps for Success
Real GitHub Copilot Exam Dumps for SuccessReal GitHub Copilot Exam Dumps for Success
Real GitHub Copilot Exam Dumps for Success
Mark Soia
 
SPRING FESTIVITIES - UK AND USA -
SPRING FESTIVITIES - UK AND USA            -SPRING FESTIVITIES - UK AND USA            -
SPRING FESTIVITIES - UK AND USA -
Colégio Santa Teresinha
 
2541William_McCollough_DigitalDetox.docx
2541William_McCollough_DigitalDetox.docx2541William_McCollough_DigitalDetox.docx
2541William_McCollough_DigitalDetox.docx
contactwilliamm2546
 
Understanding P–N Junction Semiconductors: A Beginner’s Guide
Understanding P–N Junction Semiconductors: A Beginner’s GuideUnderstanding P–N Junction Semiconductors: A Beginner’s Guide
Understanding P–N Junction Semiconductors: A Beginner’s Guide
GS Virdi
 
03#UNTAGGED. Generosity in architecture.
03#UNTAGGED. Generosity in architecture.03#UNTAGGED. Generosity in architecture.
03#UNTAGGED. Generosity in architecture.
MCH
 
To study Digestive system of insect.pptx
To study Digestive system of insect.pptxTo study Digestive system of insect.pptx
To study Digestive system of insect.pptx
Arshad Shaikh
 
"Basics of Heterocyclic Compounds and Their Naming Rules"
"Basics of Heterocyclic Compounds and Their Naming Rules""Basics of Heterocyclic Compounds and Their Naming Rules"
"Basics of Heterocyclic Compounds and Their Naming Rules"
rupalinirmalbpharm
 
How to track Cost and Revenue using Analytic Accounts in odoo Accounting, App...
How to track Cost and Revenue using Analytic Accounts in odoo Accounting, App...How to track Cost and Revenue using Analytic Accounts in odoo Accounting, App...
How to track Cost and Revenue using Analytic Accounts in odoo Accounting, App...
Celine George
 
Engage Donors Through Powerful Storytelling.pdf
Engage Donors Through Powerful Storytelling.pdfEngage Donors Through Powerful Storytelling.pdf
Engage Donors Through Powerful Storytelling.pdf
TechSoup
 
Herbs Used in Cosmetic Formulations .pptx
Herbs Used in Cosmetic Formulations .pptxHerbs Used in Cosmetic Formulations .pptx
Herbs Used in Cosmetic Formulations .pptx
RAJU THENGE
 
One Hot encoding a revolution in Machine learning
One Hot encoding a revolution in Machine learningOne Hot encoding a revolution in Machine learning
One Hot encoding a revolution in Machine learning
momer9505
 
Kenan Fellows Participants, Projects 2025-26 Cohort
Kenan Fellows Participants, Projects 2025-26 CohortKenan Fellows Participants, Projects 2025-26 Cohort
Kenan Fellows Participants, Projects 2025-26 Cohort
EducationNC
 
World war-1(Causes & impacts at a glance) PPT by Simanchala Sarab(BABed,sem-4...
World war-1(Causes & impacts at a glance) PPT by Simanchala Sarab(BABed,sem-4...World war-1(Causes & impacts at a glance) PPT by Simanchala Sarab(BABed,sem-4...
World war-1(Causes & impacts at a glance) PPT by Simanchala Sarab(BABed,sem-4...
larencebapu132
 
THE STG QUIZ GROUP D.pptx quiz by Ridip Hazarika
THE STG QUIZ GROUP D.pptx   quiz by Ridip HazarikaTHE STG QUIZ GROUP D.pptx   quiz by Ridip Hazarika
THE STG QUIZ GROUP D.pptx quiz by Ridip Hazarika
Ridip Hazarika
 
To study the nervous system of insect.pptx
To study the nervous system of insect.pptxTo study the nervous system of insect.pptx
To study the nervous system of insect.pptx
Arshad Shaikh
 
How to Set warnings for invoicing specific customers in odoo
How to Set warnings for invoicing specific customers in odooHow to Set warnings for invoicing specific customers in odoo
How to Set warnings for invoicing specific customers in odoo
Celine George
 
pulse ppt.pptx Types of pulse , characteristics of pulse , Alteration of pulse
pulse  ppt.pptx Types of pulse , characteristics of pulse , Alteration of pulsepulse  ppt.pptx Types of pulse , characteristics of pulse , Alteration of pulse
pulse ppt.pptx Types of pulse , characteristics of pulse , Alteration of pulse
sushreesangita003
 
apa-style-referencing-visual-guide-2025.pdf
apa-style-referencing-visual-guide-2025.pdfapa-style-referencing-visual-guide-2025.pdf
apa-style-referencing-visual-guide-2025.pdf
Ishika Ghosh
 
GDGLSPGCOER - Git and GitHub Workshop.pptx
GDGLSPGCOER - Git and GitHub Workshop.pptxGDGLSPGCOER - Git and GitHub Workshop.pptx
GDGLSPGCOER - Git and GitHub Workshop.pptx
azeenhodekar
 
Real GitHub Copilot Exam Dumps for Success
Real GitHub Copilot Exam Dumps for SuccessReal GitHub Copilot Exam Dumps for Success
Real GitHub Copilot Exam Dumps for Success
Mark Soia
 
2541William_McCollough_DigitalDetox.docx
2541William_McCollough_DigitalDetox.docx2541William_McCollough_DigitalDetox.docx
2541William_McCollough_DigitalDetox.docx
contactwilliamm2546
 
Ad

Basics of python 3