SlideShare a Scribd company logo
Why Python? 
•Easy to learn syntax 
•Built-in datatypes for lists, strings etc. 
•Runs on many types of machines 
•Many scientific libraries (SciPy, NumPy) 
•Large community of scientists using it 
•#1 programming language in universities 
•Shell mode for experimentation
Why Python? 
•Easy to learn syntax
Why Python? 
•Easy to learn syntax 
•Built-in datatypes for lists, strings etc.
Why Python? 
•Easy to learn syntax 
•Built-in datatypes for lists, strings etc. 
•Runs on many types of machines
Why Python? 
•Easy to learn syntax 
•Built-in datatypes for lists, strings etc. 
•Runs on many types of machines 
•Many scientific libraries (SciPy, NumPy)
Why Python? 
•Easy to learn syntax 
•Built-in datatypes for lists, strings etc. 
•Runs on many types of machines 
•Many scientific libraries (SciPy, NumPy) 
•Large community of scientists using it
Why Python? 
•Easy to learn syntax 
•Built-in datatypes for lists, strings etc. 
•Runs on many types of machines 
•Many scientific libraries (SciPy, NumPy) 
•Large community of scientists using it 
•#1 programming language in universities
Why Python? 
•Easy to learn syntax 
•Built-in datatypes for lists, strings etc. 
•Runs on many types of machines 
•Many scientific libraries (SciPy, NumPy) 
•Large community of scientists using it 
•#1 programming language in universities 
•Shell mode for experimentation
Assignment uses = 
First assignment makes the var 
(not ‘dim’ needed)
Comparison uses ==
Comparison uses == 
“Print” prints all datatypes (no toString() needed)
Logical operators are words
Multi assign
Multi assign
Datatypes
Why?
Why? 
Integers are the default
“” and ‘’ are both okay
Whitespace
This whitespace has meaning!
Indentation marks a block 
No begin/end or {}
Comments start with #
Understanding Assignment
What exactly happens is:
What exactly happens is: 
Type: Integer 
Data: 5 
memory
What exactly happens is: 
Type: Integer 
Data: 5 
Name: a 
Ref: <address1> 
name list 
memory
What exactly happens is: 
Type: Integer 
Data: 5 
Name: a 
Ref: <address1> 
name list 
memory
What exactly happens is: 
Type: Integer 
Data: 5 
Name: a 
Ref: <address1> 
name list 
memory
Important: 
Python determines the type automatically 
Decides when to delete too (garbage collection) 
Type: Integer 
Data: 5 
Name: a 
Ref: <address1> 
name list 
memory
Important: 
Python determines the type automatically 
Decides when to delete too (garbage collection) 
Basic data types (int, float, string) are immutable 
Type: Integer 
Data: 5 
Name: a 
Ref: <address1> 
name list 
memory
What exactly happens is: 
Type: Integer 
Data: 5 
Name: a 
Ref: <address1> 
name list 
memory
What exactly happens is: 
Type: Integer 
Data: 5 
Name: a 
Ref: <address1> 
name list 
memory 
Type: Integer 
Data: 6
What exactly happens is: 
Type: Integer 
Data: 5 
Name: a 
Ref: <address1> 
name list 
memory 
Type: Integer 
Data: 6
What exactly happens is: 
Name: a 
Ref: <address1> 
name list 
memory 
Type: Integer 
Data: 6
What exactly happens is: 
This is the garbage collector at work 
Name: a 
Ref: <address1> 
name list 
memory 
Type: Integer 
Data: 6
Another example
Another example 
Type: Integer 
Data: 6 
Name: a 
Ref: <address1> 
name list 
memory
Another example 
Type: Integer 
Data: 6 
Name: a 
Ref: <address1> 
name list 
memory 
Name: x 
Ref: <address1>
Another example 
Type: Integer 
Data: 6 
Name: a 
Ref: <address1> 
name list 
memory 
Type: Integer 
Data: 10 
Name: x 
Ref: <address2>
Lists may contain a mix
Lists may contain a mix 
Can even contain other lists
Looking up items 
Counting starts at 0
Looking up items 
Counting starts at 0 
We can also count from the end!
Looking up items 
Counting starts at 0 
We can also count from the end! 
‘index out of range’ is a common error
Slicing
Slicing
Slicing
Slicing 
Both arguments are optional
Slicing 
Both arguments are optional
Slicing 
Both arguments are optional
Slicing 
Both arguments are optional 
Starting at the end also allowed
Lists are mutable!
Remember this example?
Type: Integer 
Data: 6 
Name: a 
Ref: <address1> 
name list 
memory 
Remember this example?
Type: Integer 
Data: 6 
Name: a 
Ref: <address1> 
name list 
memory 
Name: x 
Ref: <address1> 
Remember this example?
Type: Integer 
Data: 6 
Name: a 
Ref: <address1> 
name list 
memory 
Type: Integer 
Data: 10 
Name: x 
Ref: <address2> 
Remember this example?
How will this work? 
Type: List 
Data: [1,2,3] 
Name: list 
Ref: <address1> 
name list 
memory
How will this work? 
Type: List 
Data: [1,2,3] 
Name: list 
Ref: <address1> 
name list 
memory 
Name: list2 
Ref: <address1>
Type: Integer 
Data: 6 
Name: a 
Ref: <address1> 
name list 
memory 
Name: x 
Ref: <address1> 
So far everything is as expected
How will this work? 
Type: List 
Data: [1,2,3] 
Name: list 
Ref: <address1> 
name list 
memory 
Name: list2 
Ref: <address1>
How will this work? 
Type: List 
Data: [3,2,1] 
Name: list 
Ref: <address1> 
name list 
memory 
Name: list2 
Ref: <address1>
How will this work? 
Type: List 
Data: [3,2,1] 
Name: list 
Ref: <address1> 
name list 
memory 
Name: list2 
Ref: <address1>
How will this work? 
Type: List 
Data: [3,2,1] 
Name: list 
Ref: <address1> 
name list 
memory 
Name: list2 
Ref: <address1>
To avoid this, use [:] to copy
To avoid this, use [:] to copy
To avoid this, use [:] to copy
Popquiz!! 
What does this do?
Popquiz!! 
What does this do?
Variables are case sensitive!
Some names are reserved
Some names are reserved
Some names are reserved
Remember this did not 
multiply list items?
For that, we use 
list comprehensions
For that, we use 
list comprehensions
Popquiz! 
What do you think is in list now?
The original list is not modified
The original list is not modified 
We can also filter
The original list is not modified 
We can also filter 
Beware, filter is on x!
This is just a string
This is just a string 
but we can put data in to format it

More Related Content

What's hot

Python files / directories part15
Python files / directories  part15Python files / directories  part15
Python files / directories part15
Vishal Dutt
 
Lists and loops
Lists and loopsLists and loops
Lists and loops
aiclub_slides
 
Lists methods
Lists methodsLists methods
Lists methods
aiclub_slides
 
An Introduction To Python - Lists, Part 1
An Introduction To Python - Lists, Part 1An Introduction To Python - Lists, Part 1
An Introduction To Python - Lists, Part 1
Blue Elephant Consulting
 
python file handling
python file handlingpython file handling
python file handling
jhona2z
 
Python - File operations & Data parsing
Python - File operations & Data parsingPython - File operations & Data parsing
Python - File operations & Data parsing
Felix Z. Hoffmann
 
Python programming : Files
Python programming : FilesPython programming : Files
Python programming : Files
Emertxe Information Technologies Pvt Ltd
 
File handling in Python
File handling in PythonFile handling in Python
Python files / directories part16
Python files / directories  part16Python files / directories  part16
Python files / directories part16
Vishal Dutt
 
Unit 3 chapter-1managing-files-of-records
Unit 3 chapter-1managing-files-of-recordsUnit 3 chapter-1managing-files-of-records
Unit 3 chapter-1managing-files-of-records
hanumanthu mothukuru
 
Python-files
Python-filesPython-files
Python-files
Krishna Nanda
 
Meher ppt (1)
Meher ppt (1)Meher ppt (1)
Meher ppt (1)
sarika meher
 
Fal-e-Hafez (Omens of Hafez) Cards in Persian using Java
Fal-e-Hafez (Omens of Hafez) Cards in Persian using JavaFal-e-Hafez (Omens of Hafez) Cards in Persian using Java
Fal-e-Hafez (Omens of Hafez) Cards in Persian using Java
Abdul Rahman Sherzad
 
Python 101
Python 101Python 101
Python 101
Prashant Jamkhande
 
.net F# mutable dictionay
.net F# mutable dictionay.net F# mutable dictionay
.net F# mutable dictionay
DrRajeshreeKhande
 
Expediting MRSH-v2 Approximate Matching with Hierarchical Bloom Filter Trees
Expediting MRSH-v2 Approximate Matching with Hierarchical Bloom Filter TreesExpediting MRSH-v2 Approximate Matching with Hierarchical Bloom Filter Trees
Expediting MRSH-v2 Approximate Matching with Hierarchical Bloom Filter Trees
David Lillis
 
A Comparison Between Python APIs For RDF Processing
A Comparison Between Python APIs For RDF ProcessingA Comparison Between Python APIs For RDF Processing
A Comparison Between Python APIs For RDF Processing
lucianb
 
File and directories in python
File and directories in pythonFile and directories in python
File and directories in python
Lifna C.S
 
UNIT 10. Files and file handling in C
UNIT 10. Files and file handling in CUNIT 10. Files and file handling in C
UNIT 10. Files and file handling in C
Ashim Lamichhane
 
File handling
File handlingFile handling
File handling
RoshanMaharjan13
 

What's hot (20)

Python files / directories part15
Python files / directories  part15Python files / directories  part15
Python files / directories part15
 
Lists and loops
Lists and loopsLists and loops
Lists and loops
 
Lists methods
Lists methodsLists methods
Lists methods
 
An Introduction To Python - Lists, Part 1
An Introduction To Python - Lists, Part 1An Introduction To Python - Lists, Part 1
An Introduction To Python - Lists, Part 1
 
python file handling
python file handlingpython file handling
python file handling
 
Python - File operations & Data parsing
Python - File operations & Data parsingPython - File operations & Data parsing
Python - File operations & Data parsing
 
Python programming : Files
Python programming : FilesPython programming : Files
Python programming : Files
 
File handling in Python
File handling in PythonFile handling in Python
File handling in Python
 
Python files / directories part16
Python files / directories  part16Python files / directories  part16
Python files / directories part16
 
Unit 3 chapter-1managing-files-of-records
Unit 3 chapter-1managing-files-of-recordsUnit 3 chapter-1managing-files-of-records
Unit 3 chapter-1managing-files-of-records
 
Python-files
Python-filesPython-files
Python-files
 
Meher ppt (1)
Meher ppt (1)Meher ppt (1)
Meher ppt (1)
 
Fal-e-Hafez (Omens of Hafez) Cards in Persian using Java
Fal-e-Hafez (Omens of Hafez) Cards in Persian using JavaFal-e-Hafez (Omens of Hafez) Cards in Persian using Java
Fal-e-Hafez (Omens of Hafez) Cards in Persian using Java
 
Python 101
Python 101Python 101
Python 101
 
.net F# mutable dictionay
.net F# mutable dictionay.net F# mutable dictionay
.net F# mutable dictionay
 
Expediting MRSH-v2 Approximate Matching with Hierarchical Bloom Filter Trees
Expediting MRSH-v2 Approximate Matching with Hierarchical Bloom Filter TreesExpediting MRSH-v2 Approximate Matching with Hierarchical Bloom Filter Trees
Expediting MRSH-v2 Approximate Matching with Hierarchical Bloom Filter Trees
 
A Comparison Between Python APIs For RDF Processing
A Comparison Between Python APIs For RDF ProcessingA Comparison Between Python APIs For RDF Processing
A Comparison Between Python APIs For RDF Processing
 
File and directories in python
File and directories in pythonFile and directories in python
File and directories in python
 
UNIT 10. Files and file handling in C
UNIT 10. Files and file handling in CUNIT 10. Files and file handling in C
UNIT 10. Files and file handling in C
 
File handling
File handlingFile handling
File handling
 

Similar to 3. python intro

Programming with Python
Programming with PythonProgramming with Python
Programming with Python
Rasan Samarasinghe
 
useR! 2012 Talk
useR! 2012 TalkuseR! 2012 Talk
useR! 2012 Talk
rtelmore
 
Advance sql session - strings
Advance sql  session - stringsAdvance sql  session - strings
Advance sql session - strings
Eyal Trabelsi
 
Complex queries in a distributed multi-model database
Complex queries in a distributed multi-model databaseComplex queries in a distributed multi-model database
Complex queries in a distributed multi-model database
Max Neunhöffer
 
Python Part 1
Python Part 1Python Part 1
Python Part 1
Mohamed Ramadan
 
Python revision tour II
Python revision tour IIPython revision tour II
Python revision tour II
Mr. Vikram Singh Slathia
 
What we can learn from Rebol?
What we can learn from Rebol?What we can learn from Rebol?
What we can learn from Rebol?
lichtkind
 
Functions, List and String methods
Functions, List and String methodsFunctions, List and String methods
Functions, List and String methods
PranavSB
 
Sql basics joi ns and common commands (1)
Sql basics  joi ns and common commands (1)Sql basics  joi ns and common commands (1)
Sql basics joi ns and common commands (1)
johnnygoodman
 
Erlang Concurrency
Erlang ConcurrencyErlang Concurrency
Erlang Concurrency
Barry Ezell
 
Mastering Python lesson 5a_lists_list_operations
Mastering Python lesson 5a_lists_list_operationsMastering Python lesson 5a_lists_list_operations
Mastering Python lesson 5a_lists_list_operations
Ruth Marvin
 
python_class.pptx
python_class.pptxpython_class.pptx
python_class.pptx
chandankumar943868
 
Dynamic Python
Dynamic PythonDynamic Python
Dynamic Python
Chui-Wen Chiu
 
Dynamic languages, for software craftmanship group
Dynamic languages, for software craftmanship groupDynamic languages, for software craftmanship group
Dynamic languages, for software craftmanship group
Reuven Lerner
 
50 must know coding interview questions
50 must know coding interview questions50 must know coding interview questions
50 must know coding interview questions
Ishwar Jha
 
CoderDojo: Intermediate Python programming course
CoderDojo: Intermediate Python programming courseCoderDojo: Intermediate Python programming course
CoderDojo: Intermediate Python programming course
Alexander Galkin
 
Baabtra.com little coder chapter - 3
Baabtra.com little coder   chapter - 3Baabtra.com little coder   chapter - 3
Baabtra.com little coder chapter - 3
baabtra.com - No. 1 supplier of quality freshers
 
1. python programming
1. python programming1. python programming
1. python programming
sreeLekha51
 
A Gentle Introduction to Coding ... with Python
A Gentle Introduction to Coding ... with PythonA Gentle Introduction to Coding ... with Python
A Gentle Introduction to Coding ... with Python
Tariq Rashid
 
Data structures and algorithms
Data structures and algorithmsData structures and algorithms
Data structures and algorithms
Julie Iskander
 

Similar to 3. python intro (20)

Programming with Python
Programming with PythonProgramming with Python
Programming with Python
 
useR! 2012 Talk
useR! 2012 TalkuseR! 2012 Talk
useR! 2012 Talk
 
Advance sql session - strings
Advance sql  session - stringsAdvance sql  session - strings
Advance sql session - strings
 
Complex queries in a distributed multi-model database
Complex queries in a distributed multi-model databaseComplex queries in a distributed multi-model database
Complex queries in a distributed multi-model database
 
Python Part 1
Python Part 1Python Part 1
Python Part 1
 
Python revision tour II
Python revision tour IIPython revision tour II
Python revision tour II
 
What we can learn from Rebol?
What we can learn from Rebol?What we can learn from Rebol?
What we can learn from Rebol?
 
Functions, List and String methods
Functions, List and String methodsFunctions, List and String methods
Functions, List and String methods
 
Sql basics joi ns and common commands (1)
Sql basics  joi ns and common commands (1)Sql basics  joi ns and common commands (1)
Sql basics joi ns and common commands (1)
 
Erlang Concurrency
Erlang ConcurrencyErlang Concurrency
Erlang Concurrency
 
Mastering Python lesson 5a_lists_list_operations
Mastering Python lesson 5a_lists_list_operationsMastering Python lesson 5a_lists_list_operations
Mastering Python lesson 5a_lists_list_operations
 
python_class.pptx
python_class.pptxpython_class.pptx
python_class.pptx
 
Dynamic Python
Dynamic PythonDynamic Python
Dynamic Python
 
Dynamic languages, for software craftmanship group
Dynamic languages, for software craftmanship groupDynamic languages, for software craftmanship group
Dynamic languages, for software craftmanship group
 
50 must know coding interview questions
50 must know coding interview questions50 must know coding interview questions
50 must know coding interview questions
 
CoderDojo: Intermediate Python programming course
CoderDojo: Intermediate Python programming courseCoderDojo: Intermediate Python programming course
CoderDojo: Intermediate Python programming course
 
Baabtra.com little coder chapter - 3
Baabtra.com little coder   chapter - 3Baabtra.com little coder   chapter - 3
Baabtra.com little coder chapter - 3
 
1. python programming
1. python programming1. python programming
1. python programming
 
A Gentle Introduction to Coding ... with Python
A Gentle Introduction to Coding ... with PythonA Gentle Introduction to Coding ... with Python
A Gentle Introduction to Coding ... with Python
 
Data structures and algorithms
Data structures and algorithmsData structures and algorithms
Data structures and algorithms
 

More from in4400

5. outro
5. outro5. outro
5. outro
in4400
 
4. sql
4. sql4. sql
4. sql
in4400
 
3. database
3. database3. database
3. database
in4400
 
2. limitations
2. limitations2. limitations
2. limitations
in4400
 
1. intro
1. intro1. intro
1. intro
in4400
 
PowerPivot and PowerQuery
PowerPivot and PowerQueryPowerPivot and PowerQuery
PowerPivot and PowerQuery
in4400
 
2. limitations
2. limitations2. limitations
2. limitations
in4400
 
1. intro
1. intro1. intro
1. intro
in4400
 
6. outro
6. outro6. outro
6. outro
in4400
 
5. data nitro
5. data nitro5. data nitro
5. data nitro
in4400
 
4. python functions
4. python   functions4. python   functions
4. python functions
in4400
 
6. spreadsheet are code
6. spreadsheet are code6. spreadsheet are code
6. spreadsheet are code
in4400
 
2. Data organization
2. Data organization2. Data organization
2. Data organization
in4400
 
1. Intro
1. Intro1. Intro
1. Intro
in4400
 
5. Outro
5. Outro5. Outro
5. Outro
in4400
 
3. Pivot tables
3. Pivot tables3. Pivot tables
3. Pivot tables
in4400
 
4. Testing
4. Testing4. Testing
4. Testing
in4400
 

More from in4400 (17)

5. outro
5. outro5. outro
5. outro
 
4. sql
4. sql4. sql
4. sql
 
3. database
3. database3. database
3. database
 
2. limitations
2. limitations2. limitations
2. limitations
 
1. intro
1. intro1. intro
1. intro
 
PowerPivot and PowerQuery
PowerPivot and PowerQueryPowerPivot and PowerQuery
PowerPivot and PowerQuery
 
2. limitations
2. limitations2. limitations
2. limitations
 
1. intro
1. intro1. intro
1. intro
 
6. outro
6. outro6. outro
6. outro
 
5. data nitro
5. data nitro5. data nitro
5. data nitro
 
4. python functions
4. python   functions4. python   functions
4. python functions
 
6. spreadsheet are code
6. spreadsheet are code6. spreadsheet are code
6. spreadsheet are code
 
2. Data organization
2. Data organization2. Data organization
2. Data organization
 
1. Intro
1. Intro1. Intro
1. Intro
 
5. Outro
5. Outro5. Outro
5. Outro
 
3. Pivot tables
3. Pivot tables3. Pivot tables
3. Pivot tables
 
4. Testing
4. Testing4. Testing
4. Testing
 

Recently uploaded

Pride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School DistrictPride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School District
David Douglas School District
 
PIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf IslamabadPIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf Islamabad
AyyanKhan40
 
DRUGS AND ITS classification slide share
DRUGS AND ITS classification slide shareDRUGS AND ITS classification slide share
DRUGS AND ITS classification slide share
taiba qazi
 
PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.
Dr. Shivangi Singh Parihar
 
Assignment_4_ArianaBusciglio Marvel(1).docx
Assignment_4_ArianaBusciglio Marvel(1).docxAssignment_4_ArianaBusciglio Marvel(1).docx
Assignment_4_ArianaBusciglio Marvel(1).docx
ArianaBusciglio
 
Liberal Approach to the Study of Indian Politics.pdf
Liberal Approach to the Study of Indian Politics.pdfLiberal Approach to the Study of Indian Politics.pdf
Liberal Approach to the Study of Indian Politics.pdf
WaniBasim
 
Top five deadliest dog breeds in America
Top five deadliest dog breeds in AmericaTop five deadliest dog breeds in America
Top five deadliest dog breeds in America
Bisnar Chase Personal Injury Attorneys
 
The Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collectionThe Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collection
Israel Genealogy Research Association
 
Advanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docxAdvanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docx
adhitya5119
 
The basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptxThe basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptx
heathfieldcps1
 
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
Dr. Vinod Kumar Kanvaria
 
Advantages and Disadvantages of CMS from an SEO Perspective
Advantages and Disadvantages of CMS from an SEO PerspectiveAdvantages and Disadvantages of CMS from an SEO Perspective
Advantages and Disadvantages of CMS from an SEO Perspective
Krisztián Száraz
 
S1-Introduction-Biopesticides in ICM.pptx
S1-Introduction-Biopesticides in ICM.pptxS1-Introduction-Biopesticides in ICM.pptx
S1-Introduction-Biopesticides in ICM.pptx
tarandeep35
 
The basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptxThe basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptx
heathfieldcps1
 
writing about opinions about Australia the movie
writing about opinions about Australia the moviewriting about opinions about Australia the movie
writing about opinions about Australia the movie
Nicholas Montgomery
 
Azure Interview Questions and Answers PDF By ScholarHat
Azure Interview Questions and Answers PDF By ScholarHatAzure Interview Questions and Answers PDF By ScholarHat
Azure Interview Questions and Answers PDF By ScholarHat
Scholarhat
 
Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.
Ashokrao Mane college of Pharmacy Peth-Vadgaon
 
How to Add Chatter in the odoo 17 ERP Module
How to Add Chatter in the odoo 17 ERP ModuleHow to Add Chatter in the odoo 17 ERP Module
How to Add Chatter in the odoo 17 ERP Module
Celine George
 
CACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdfCACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdf
camakaiclarkmusic
 
MATATAG CURRICULUM: ASSESSING THE READINESS OF ELEM. PUBLIC SCHOOL TEACHERS I...
MATATAG CURRICULUM: ASSESSING THE READINESS OF ELEM. PUBLIC SCHOOL TEACHERS I...MATATAG CURRICULUM: ASSESSING THE READINESS OF ELEM. PUBLIC SCHOOL TEACHERS I...
MATATAG CURRICULUM: ASSESSING THE READINESS OF ELEM. PUBLIC SCHOOL TEACHERS I...
NelTorrente
 

Recently uploaded (20)

Pride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School DistrictPride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School District
 
PIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf IslamabadPIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf Islamabad
 
DRUGS AND ITS classification slide share
DRUGS AND ITS classification slide shareDRUGS AND ITS classification slide share
DRUGS AND ITS classification slide share
 
PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.
 
Assignment_4_ArianaBusciglio Marvel(1).docx
Assignment_4_ArianaBusciglio Marvel(1).docxAssignment_4_ArianaBusciglio Marvel(1).docx
Assignment_4_ArianaBusciglio Marvel(1).docx
 
Liberal Approach to the Study of Indian Politics.pdf
Liberal Approach to the Study of Indian Politics.pdfLiberal Approach to the Study of Indian Politics.pdf
Liberal Approach to the Study of Indian Politics.pdf
 
Top five deadliest dog breeds in America
Top five deadliest dog breeds in AmericaTop five deadliest dog breeds in America
Top five deadliest dog breeds in America
 
The Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collectionThe Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collection
 
Advanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docxAdvanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docx
 
The basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptxThe basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptx
 
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
 
Advantages and Disadvantages of CMS from an SEO Perspective
Advantages and Disadvantages of CMS from an SEO PerspectiveAdvantages and Disadvantages of CMS from an SEO Perspective
Advantages and Disadvantages of CMS from an SEO Perspective
 
S1-Introduction-Biopesticides in ICM.pptx
S1-Introduction-Biopesticides in ICM.pptxS1-Introduction-Biopesticides in ICM.pptx
S1-Introduction-Biopesticides in ICM.pptx
 
The basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptxThe basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptx
 
writing about opinions about Australia the movie
writing about opinions about Australia the moviewriting about opinions about Australia the movie
writing about opinions about Australia the movie
 
Azure Interview Questions and Answers PDF By ScholarHat
Azure Interview Questions and Answers PDF By ScholarHatAzure Interview Questions and Answers PDF By ScholarHat
Azure Interview Questions and Answers PDF By ScholarHat
 
Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.
 
How to Add Chatter in the odoo 17 ERP Module
How to Add Chatter in the odoo 17 ERP ModuleHow to Add Chatter in the odoo 17 ERP Module
How to Add Chatter in the odoo 17 ERP Module
 
CACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdfCACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdf
 
MATATAG CURRICULUM: ASSESSING THE READINESS OF ELEM. PUBLIC SCHOOL TEACHERS I...
MATATAG CURRICULUM: ASSESSING THE READINESS OF ELEM. PUBLIC SCHOOL TEACHERS I...MATATAG CURRICULUM: ASSESSING THE READINESS OF ELEM. PUBLIC SCHOOL TEACHERS I...
MATATAG CURRICULUM: ASSESSING THE READINESS OF ELEM. PUBLIC SCHOOL TEACHERS I...
 

3. python intro