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

More Related Content

What's hot

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 OperationsWai Nwe Tun
 
Datatypes in python
Datatypes in pythonDatatypes in python
Datatypes in pythoneShikshak
 
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 beginnersKálmán "KAMI" Szalai
 
Python Traning presentation
Python Traning presentationPython Traning presentation
Python Traning presentationNimrita Koul
 
Learn python - for beginners - part-2
Learn python - for beginners - part-2Learn python - for beginners - part-2
Learn python - for beginners - part-2RajKumar 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 programmingDamian 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 Twoamiable_indian
 
Python and sysadmin I
Python and sysadmin IPython and sysadmin I
Python and sysadmin IGuixing Bai
 
Programming Under Linux In Python
Programming Under Linux In PythonProgramming Under Linux In Python
Programming Under Linux In PythonMarwan 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 02Fariz Darari
 

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!
 
Variables In Php 1
Variables In Php 1Variables In Php 1
Variables In Php 1
 
Matlab and Python: Basic Operations
Matlab and Python: Basic OperationsMatlab and Python: Basic Operations
Matlab and Python: Basic Operations
 
Datatypes in python
Datatypes in pythonDatatypes in python
Datatypes in python
 
Python for Beginners(v1)
Python for Beginners(v1)Python for Beginners(v1)
Python for Beginners(v1)
 
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
 
Python Traning presentation
Python Traning presentationPython Traning presentation
Python Traning presentation
 
Learn python - for beginners - part-2
Learn python - for beginners - part-2Learn python - for beginners - part-2
Learn python - for beginners - part-2
 
Programming in Python
Programming in Python Programming in Python
Programming in Python
 
Python 101 1
Python 101   1Python 101   1
Python 101 1
 
Introduction to Python programming
Introduction to Python programmingIntroduction to Python programming
Introduction to Python programming
 
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)
 
Python Workshop
Python  Workshop Python  Workshop
Python Workshop
 
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
 
Introduction to Python - Part Two
Introduction to Python - Part TwoIntroduction to Python - Part Two
Introduction to Python - Part Two
 
Python- strings
Python- stringsPython- strings
Python- strings
 
Python
PythonPython
Python
 
Python and sysadmin I
Python and sysadmin IPython and sysadmin I
Python and sysadmin I
 
Programming Under Linux In Python
Programming Under Linux In PythonProgramming Under Linux In Python
Programming Under Linux In Python
 
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
 

Similar to Basics of python 3

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 FundamentalsPraveen M Jigajinni
 
Basic of Python- Hands on Session
Basic of Python- Hands on SessionBasic of Python- Hands on Session
Basic of Python- Hands on SessionDharmesh Tank
 
Python variables and data types.pptx
Python variables and data types.pptxPython variables and data types.pptx
Python variables and data types.pptxAkshayAggarwal79
 
Core Concept_Python.pptx
Core Concept_Python.pptxCore Concept_Python.pptx
Core Concept_Python.pptxAshwini Raut
 
11 Introduction to lists.pptx
11 Introduction to lists.pptx11 Introduction to lists.pptx
11 Introduction to lists.pptxssuser8e50d8
 
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.docxfaithxdunce63732
 
Notes3
Notes3Notes3
Notes3hccit
 
Introduction To Programming with Python-3
Introduction To Programming with Python-3Introduction To Programming with Python-3
Introduction To Programming with Python-3Syed Farjad Zia Zaidi
 
1691912901477_Python_Basics and list,tuple,string.pptx
1691912901477_Python_Basics and list,tuple,string.pptx1691912901477_Python_Basics and list,tuple,string.pptx
1691912901477_Python_Basics and list,tuple,string.pptxKUSHSHARMA630049
 
Intro to Python Programming Language
Intro to Python Programming LanguageIntro to Python Programming Language
Intro to Python Programming LanguageDipankar Achinta
 
Biswa Sir Python Fundamentals.pptx
Biswa Sir Python Fundamentals.pptxBiswa Sir Python Fundamentals.pptx
Biswa Sir Python Fundamentals.pptxBiswambarBehera5
 

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
 
Chapter - 2.pptx
Chapter - 2.pptxChapter - 2.pptx
Chapter - 2.pptx
 
Python cheat-sheet
Python cheat-sheetPython cheat-sheet
Python cheat-sheet
 
AI_2nd Lab.pptx
AI_2nd Lab.pptxAI_2nd Lab.pptx
AI_2nd Lab.pptx
 
Basic of Python- Hands on Session
Basic of Python- Hands on SessionBasic of Python- Hands on Session
Basic of Python- Hands on Session
 
Python variables and data types.pptx
Python variables and data types.pptxPython variables and data types.pptx
Python variables and data types.pptx
 
Chapter 9 python fundamentals
Chapter 9 python fundamentalsChapter 9 python fundamentals
Chapter 9 python fundamentals
 
Core Concept_Python.pptx
Core Concept_Python.pptxCore Concept_Python.pptx
Core Concept_Python.pptx
 
Python revision tour II
Python revision tour IIPython revision tour II
Python revision tour II
 
unit1 python.pptx
unit1 python.pptxunit1 python.pptx
unit1 python.pptx
 
11 Introduction to lists.pptx
11 Introduction to lists.pptx11 Introduction to lists.pptx
11 Introduction to lists.pptx
 
23UCACC11 Python Programming (MTNC) (BCA)
23UCACC11 Python Programming (MTNC) (BCA)23UCACC11 Python Programming (MTNC) (BCA)
23UCACC11 Python Programming (MTNC) (BCA)
 
Python slide.1
Python slide.1Python slide.1
Python slide.1
 
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
 
Programming with Python
Programming with PythonProgramming with Python
Programming with Python
 
Notes3
Notes3Notes3
Notes3
 
Introduction To Programming with Python-3
Introduction To Programming with Python-3Introduction To Programming with Python-3
Introduction To Programming with Python-3
 
1691912901477_Python_Basics and list,tuple,string.pptx
1691912901477_Python_Basics and list,tuple,string.pptx1691912901477_Python_Basics and list,tuple,string.pptx
1691912901477_Python_Basics and list,tuple,string.pptx
 
Intro to Python Programming Language
Intro to Python Programming LanguageIntro to Python Programming Language
Intro to Python Programming Language
 
Biswa Sir Python Fundamentals.pptx
Biswa Sir Python Fundamentals.pptxBiswa Sir Python Fundamentals.pptx
Biswa Sir Python Fundamentals.pptx
 

Recently uploaded

Basic Civil Engineering Notes of Chapter-6, Topic- Ecosystem, Biodiversity G...
Basic Civil Engineering Notes of Chapter-6,  Topic- Ecosystem, Biodiversity G...Basic Civil Engineering Notes of Chapter-6,  Topic- Ecosystem, Biodiversity G...
Basic Civil Engineering Notes of Chapter-6, Topic- Ecosystem, Biodiversity G...Denish Jangid
 
Cambridge International AS A Level Biology Coursebook - EBook (MaryFosbery J...
Cambridge International AS  A Level Biology Coursebook - EBook (MaryFosbery J...Cambridge International AS  A Level Biology Coursebook - EBook (MaryFosbery J...
Cambridge International AS A Level Biology Coursebook - EBook (MaryFosbery J...AzmatAli747758
 
Instructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptxInstructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptxJheel Barad
 
MARUTI SUZUKI- A Successful Joint Venture in India.pptx
MARUTI SUZUKI- A Successful Joint Venture in India.pptxMARUTI SUZUKI- A Successful Joint Venture in India.pptx
MARUTI SUZUKI- A Successful Joint Venture in India.pptxbennyroshan06
 
Extraction Of Natural Dye From Beetroot (Beta Vulgaris) And Preparation Of He...
Extraction Of Natural Dye From Beetroot (Beta Vulgaris) And Preparation Of He...Extraction Of Natural Dye From Beetroot (Beta Vulgaris) And Preparation Of He...
Extraction Of Natural Dye From Beetroot (Beta Vulgaris) And Preparation Of He...SachinKumar945617
 
NLC-2024-Orientation-for-RO-SDO (1).pptx
NLC-2024-Orientation-for-RO-SDO (1).pptxNLC-2024-Orientation-for-RO-SDO (1).pptx
NLC-2024-Orientation-for-RO-SDO (1).pptxssuserbdd3e8
 
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaasiemaillard
 
Basic_QTL_Marker-assisted_Selection_Sourabh.ppt
Basic_QTL_Marker-assisted_Selection_Sourabh.pptBasic_QTL_Marker-assisted_Selection_Sourabh.ppt
Basic_QTL_Marker-assisted_Selection_Sourabh.pptSourabh Kumar
 
plant breeding methods in asexually or clonally propagated crops
plant breeding methods in asexually or clonally propagated cropsplant breeding methods in asexually or clonally propagated crops
plant breeding methods in asexually or clonally propagated cropsparmarsneha2
 
Additional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdfAdditional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdfjoachimlavalley1
 
Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxJisc
 
Unit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdfUnit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdfThiyagu K
 
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptxStudents, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptxEduSkills OECD
 
PART A. Introduction to Costumer Service
PART A. Introduction to Costumer ServicePART A. Introduction to Costumer Service
PART A. Introduction to Costumer ServicePedroFerreira53928
 
Sectors of the Indian Economy - Class 10 Study Notes pdf
Sectors of the Indian Economy - Class 10 Study Notes pdfSectors of the Indian Economy - Class 10 Study Notes pdf
Sectors of the Indian Economy - Class 10 Study Notes pdfVivekanand Anglo Vedic Academy
 
Home assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdfHome assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdfTamralipta Mahavidyalaya
 
The Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdfThe Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdfkaushalkr1407
 
How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...Jisc
 

Recently uploaded (20)

Basic Civil Engineering Notes of Chapter-6, Topic- Ecosystem, Biodiversity G...
Basic Civil Engineering Notes of Chapter-6,  Topic- Ecosystem, Biodiversity G...Basic Civil Engineering Notes of Chapter-6,  Topic- Ecosystem, Biodiversity G...
Basic Civil Engineering Notes of Chapter-6, Topic- Ecosystem, Biodiversity G...
 
Cambridge International AS A Level Biology Coursebook - EBook (MaryFosbery J...
Cambridge International AS  A Level Biology Coursebook - EBook (MaryFosbery J...Cambridge International AS  A Level Biology Coursebook - EBook (MaryFosbery J...
Cambridge International AS A Level Biology Coursebook - EBook (MaryFosbery J...
 
Instructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptxInstructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptx
 
MARUTI SUZUKI- A Successful Joint Venture in India.pptx
MARUTI SUZUKI- A Successful Joint Venture in India.pptxMARUTI SUZUKI- A Successful Joint Venture in India.pptx
MARUTI SUZUKI- A Successful Joint Venture in India.pptx
 
Extraction Of Natural Dye From Beetroot (Beta Vulgaris) And Preparation Of He...
Extraction Of Natural Dye From Beetroot (Beta Vulgaris) And Preparation Of He...Extraction Of Natural Dye From Beetroot (Beta Vulgaris) And Preparation Of He...
Extraction Of Natural Dye From Beetroot (Beta Vulgaris) And Preparation Of He...
 
NLC-2024-Orientation-for-RO-SDO (1).pptx
NLC-2024-Orientation-for-RO-SDO (1).pptxNLC-2024-Orientation-for-RO-SDO (1).pptx
NLC-2024-Orientation-for-RO-SDO (1).pptx
 
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
 
Basic_QTL_Marker-assisted_Selection_Sourabh.ppt
Basic_QTL_Marker-assisted_Selection_Sourabh.pptBasic_QTL_Marker-assisted_Selection_Sourabh.ppt
Basic_QTL_Marker-assisted_Selection_Sourabh.ppt
 
plant breeding methods in asexually or clonally propagated crops
plant breeding methods in asexually or clonally propagated cropsplant breeding methods in asexually or clonally propagated crops
plant breeding methods in asexually or clonally propagated crops
 
Additional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdfAdditional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdf
 
Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptx
 
B.ed spl. HI pdusu exam paper-2023-24.pdf
B.ed spl. HI pdusu exam paper-2023-24.pdfB.ed spl. HI pdusu exam paper-2023-24.pdf
B.ed spl. HI pdusu exam paper-2023-24.pdf
 
Unit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdfUnit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdf
 
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptxStudents, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
 
PART A. Introduction to Costumer Service
PART A. Introduction to Costumer ServicePART A. Introduction to Costumer Service
PART A. Introduction to Costumer Service
 
Sectors of the Indian Economy - Class 10 Study Notes pdf
Sectors of the Indian Economy - Class 10 Study Notes pdfSectors of the Indian Economy - Class 10 Study Notes pdf
Sectors of the Indian Economy - Class 10 Study Notes pdf
 
Home assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdfHome assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdf
 
NCERT Solutions Power Sharing Class 10 Notes pdf
NCERT Solutions Power Sharing Class 10 Notes pdfNCERT Solutions Power Sharing Class 10 Notes pdf
NCERT Solutions Power Sharing Class 10 Notes pdf
 
The Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdfThe Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdf
 
How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...
 

Basics of python 3