際際滷

際際滷Share a Scribd company logo
Learn Python the Hard Way
Exercises 27  34
http://learnpythonthehardway.org/
New things in ex. 2734
 Booleans: True, False, logic, operators
 if  elif  else: Note the relationship to True
and False
 loops: 2 kinds, for and while
 lists and how to
 create a new list
 add and delete things from lists
 find out whats in a list
How the Boolean AND works
There is a very long bungee jump above a deep
river gorge in Africa. You say:
If the bungee jump looks safe and it is cheap,
then I will do it.
How the Boolean AND works
If the bungee jump looks safe and it is cheap,
then I will do it.
looks safe = False (you wont do it)
is cheap = False (you wont do it)
Youll only do it if both conditions are TRUE.
How the Boolean OR works
There is a great party Tuesday night, but you are
in danger of failing your Wednesday test.
You say:
If I finish studying in time or the test is
canceled, then I will go to the party.
How the Boolean OR works
If I finish studying in time or the test is
canceled, then I will go to the party.
finish studying = True (can go)
test canceled = True (can go)
You can go if only one of the conditions is TRUE.
Or both. But one is enough.
and
True and True : True
True and False :
False
False and True :
False
False and False :
False
True or True : True
True or False : True
False or True : True
False or False : False
If the bungee jump looks safe and it is cheap,
then I will do it.
If I finish studying in time or the test is canceled, then I
will go to the party.
or
Boolean operators (symbols)
1 != 0
1 == (3  2)
5 >= 1
10 <= 100
1 != (3  2)
1 == 0
5 <= 1
10 >= 100
True
True
True
True
False
False
False
False
Exercise 28
if  elif  else
(if statements)
Exercises 29 and 30
Exercises 29 and 30
Exercise 30
Loops
Lists
Loops
 Every programming language has loops
 A loop typically runs over and over until
something makes it stop (different from a
usual function, which runs only once)
 The for loop is a standard kind of loop
 for-loops can appear inside a function
Exercise 32
Loops
 Standard syntax for starting a for-loop in
Python:
for fruit in fruits:
Exercise 32
Note that fruit could be any variable name, like x or a or cat.
In this case, there must already be a list named
fruits
(more about lists in a minute)
Loops
 Also standard syntax (but different) for
starting a for-loop in Python:
for i in range(0, 9):
Exercise 32
In this case, we dont know the name of the list
yet. Or maybe this loop does not even use a list.
So, 2 different for-loops
for fruit in fruits:
print fruit
Exercise 32
for i in range(0, 9):
print "Hello!"
Like functions, loops must be indented. They can have many
lines. These are short just to make them simple.
while-loops
Exercise 33
 The while loop is another standard kind of
loop
 while-loops can appear inside a function
 If you can figure out how to do what you want
with a for-loop, then use a for-loop.
 If you must use a while-loop, be careful that it
will not run forever. If it does, its an infinite
loop (which is NOT good).
Lists
 In many languages, a list is called an array
(but Zed says we should say list for Python)
 Lists can be giganticthere can be thousands
of items in one list, or none
 The standard format of a list in Python:
fruits = ['apples', 'oranges', 'pears',
'apricots']
Exercise 32
Note: If there are numbers in the list, they wont have quotes around them.
Loops and Lists
These two for-loops do exactly the same thing:
fruits = ['apples', 'oranges', 'pears',
'apricots']
for fruit in fruits:
print "A fruit of type: %s" % fruit
for y in fruits:
print "A fruit of type: %s" % y
Exercise 32
Lists
 You actually already saw a list in Exercise 25,
when you did this:
words = stuff.split(' ')
 After that, words contained a list:
['All', 'good', 'things', 'come', 'to',
'those', 'who', 'wait.']
 You can use pop() and len() on any list
Exercise 32
Some things we do with lists
fruits.pop()
fruits.append("bananas")
fruits.extend(["plums", "mangoes"])
del fruits[2]
print fruits
With append() you can add only one item at a time to the list.
Exercises 32, 34
Items in lists
Exercise 34:
Items in lists can be counted.
Items in lists can be referenced by number, but the first
number is not 1  it is 0.
Back to while-loops
 You might think the while-loops act a lot like
the for-loops that used range (and you would
be right)
 However, the while-loops are different
 The condition at the start of a while-loop
could test for something not numeric, such as
while we are not yet at the end of the file
 Note: for-loops are very common, and
while-loops are less so (as Zed says: Usually a
for-loop is better)
Exercise 33
Learning  while-loops
 You really need to play with a lot of the extra
credit or study drills in Exercise 33 to get this
into your brain
 I made four different .py files to test all the
comparisons that Zed recommends
 If you play with this, you can really understand
how for-loops and while-loops are different
Exercise 33
Zeds Exercise 33
A word of advice
So Exercise 31 is long, but easy. You might feel
like now its all getting easy 
BUT WAIT! No, its not.
 Exercise 32 introduces the for-loop.
 Exercise 33 introduces the while-loop.
 Exercise 34 introduces how we navigate
through the elements in a list.
These last 3 exercises are QUITE challenging!
Indents in Python
 The usual way is to indent 4 spaces (not a tab
indent  actually type 4 spaces)
 If you accidentally type 3, or 5, or something
else, and all the others are 4, Python will
throw an error
 Most programming languages require multiple
levels of indents, and these levels (and the
format of indenting) are important, so take
care
An example of multiple
indent levels within a
Python program
Learn Python the Hard Way
Exercises 27  34
(now we know some stuff)

More Related Content

Similar to Learning Python - Week 4 (20)

Course Design Best Practices
Course Design Best PracticesCourse Design Best Practices
Course Design Best Practices
Keitaro Matsuoka
Brixton Library Technology Initiative Week1 Recap
Brixton Library Technology Initiative Week1 RecapBrixton Library Technology Initiative Week1 Recap
Brixton Library Technology Initiative Week1 Recap
Basil Bibi
ProgPrinc_Lecture_3_Data_Structures_and_Iteration-2.pdf
ProgPrinc_Lecture_3_Data_Structures_and_Iteration-2.pdfProgPrinc_Lecture_3_Data_Structures_and_Iteration-2.pdf
ProgPrinc_Lecture_3_Data_Structures_and_Iteration-2.pdf
lailoesakhan
Learn python
Learn pythonLearn python
Learn python
mocninja
Fuzzy mathematics:An application oriented introduction
Fuzzy mathematics:An application oriented introductionFuzzy mathematics:An application oriented introduction
Fuzzy mathematics:An application oriented introduction
Nagasuri Bala Venkateswarlu
Algorithms
Algorithms Algorithms
Algorithms
Mohamed Essam
Py4inf 05-iterations (1)
Py4inf 05-iterations (1)Py4inf 05-iterations (1)
Py4inf 05-iterations (1)
karan saini
Py4inf 05-iterations (1)
Py4inf 05-iterations (1)Py4inf 05-iterations (1)
Py4inf 05-iterations (1)
karan saini
Py4inf 05-iterations
Py4inf 05-iterationsPy4inf 05-iterations
Py4inf 05-iterations
karan saini
Functions, List and String methods
Functions, List and String methodsFunctions, List and String methods
Functions, List and String methods
PranavSB
Memory basics 1
Memory basics 1Memory basics 1
Memory basics 1
cofritz
ProgFund_Lecture_3_Data_Structures_and_Iteration-1.pdf
ProgFund_Lecture_3_Data_Structures_and_Iteration-1.pdfProgFund_Lecture_3_Data_Structures_and_Iteration-1.pdf
ProgFund_Lecture_3_Data_Structures_and_Iteration-1.pdf
lailoesakhan
Introduction To Algorithms
Introduction To AlgorithmsIntroduction To Algorithms
Introduction To Algorithms
Spotle.ai
Presentation phinney abrf 2019
Presentation phinney abrf 2019Presentation phinney abrf 2019
Presentation phinney abrf 2019
UC Davis
4535092.ppt
4535092.ppt4535092.ppt
4535092.ppt
ntabdelnaiem
Mixed Effects Models - Empirical Logit
Mixed Effects Models - Empirical LogitMixed Effects Models - Empirical Logit
Mixed Effects Models - Empirical Logit
Scott Fraundorf
Lu decomposition
Lu decompositionLu decomposition
Lu decomposition
Faisal Abbas
Python 101 1
Python 101   1Python 101   1
Python 101 1
Iccha Sethi
powerpoint 1-19.pdf
powerpoint 1-19.pdfpowerpoint 1-19.pdf
powerpoint 1-19.pdf
JuanPicasso7
Assignement2 - Three techniques to be a better learner
Assignement2  - Three techniques to be a better learnerAssignement2  - Three techniques to be a better learner
Assignement2 - Three techniques to be a better learner
Abdelkrim Berkous
Course Design Best Practices
Course Design Best PracticesCourse Design Best Practices
Course Design Best Practices
Keitaro Matsuoka
Brixton Library Technology Initiative Week1 Recap
Brixton Library Technology Initiative Week1 RecapBrixton Library Technology Initiative Week1 Recap
Brixton Library Technology Initiative Week1 Recap
Basil Bibi
ProgPrinc_Lecture_3_Data_Structures_and_Iteration-2.pdf
ProgPrinc_Lecture_3_Data_Structures_and_Iteration-2.pdfProgPrinc_Lecture_3_Data_Structures_and_Iteration-2.pdf
ProgPrinc_Lecture_3_Data_Structures_and_Iteration-2.pdf
lailoesakhan
Learn python
Learn pythonLearn python
Learn python
mocninja
Fuzzy mathematics:An application oriented introduction
Fuzzy mathematics:An application oriented introductionFuzzy mathematics:An application oriented introduction
Fuzzy mathematics:An application oriented introduction
Nagasuri Bala Venkateswarlu
Py4inf 05-iterations (1)
Py4inf 05-iterations (1)Py4inf 05-iterations (1)
Py4inf 05-iterations (1)
karan saini
Py4inf 05-iterations (1)
Py4inf 05-iterations (1)Py4inf 05-iterations (1)
Py4inf 05-iterations (1)
karan saini
Py4inf 05-iterations
Py4inf 05-iterationsPy4inf 05-iterations
Py4inf 05-iterations
karan saini
Functions, List and String methods
Functions, List and String methodsFunctions, List and String methods
Functions, List and String methods
PranavSB
Memory basics 1
Memory basics 1Memory basics 1
Memory basics 1
cofritz
ProgFund_Lecture_3_Data_Structures_and_Iteration-1.pdf
ProgFund_Lecture_3_Data_Structures_and_Iteration-1.pdfProgFund_Lecture_3_Data_Structures_and_Iteration-1.pdf
ProgFund_Lecture_3_Data_Structures_and_Iteration-1.pdf
lailoesakhan
Introduction To Algorithms
Introduction To AlgorithmsIntroduction To Algorithms
Introduction To Algorithms
Spotle.ai
Presentation phinney abrf 2019
Presentation phinney abrf 2019Presentation phinney abrf 2019
Presentation phinney abrf 2019
UC Davis
Mixed Effects Models - Empirical Logit
Mixed Effects Models - Empirical LogitMixed Effects Models - Empirical Logit
Mixed Effects Models - Empirical Logit
Scott Fraundorf
Lu decomposition
Lu decompositionLu decomposition
Lu decomposition
Faisal Abbas
powerpoint 1-19.pdf
powerpoint 1-19.pdfpowerpoint 1-19.pdf
powerpoint 1-19.pdf
JuanPicasso7
Assignement2 - Three techniques to be a better learner
Assignement2  - Three techniques to be a better learnerAssignement2  - Three techniques to be a better learner
Assignement2 - Three techniques to be a better learner
Abdelkrim Berkous

More from Mindy McAdams (20)

Just Enough Code
Just Enough CodeJust Enough Code
Just Enough Code
Mindy McAdams
Multimedia Journalism Innovations in the Classroom
Multimedia Journalism Innovations in the ClassroomMultimedia Journalism Innovations in the Classroom
Multimedia Journalism Innovations in the Classroom
Mindy McAdams
Summary of journalism faculty curriculum workshop
Summary of journalism faculty curriculum workshopSummary of journalism faculty curriculum workshop
Summary of journalism faculty curriculum workshop
Mindy McAdams
Crowdsourcing
CrowdsourcingCrowdsourcing
Crowdsourcing
Mindy McAdams
U.S. j-schools and digital skills
U.S. j-schools and digital skills U.S. j-schools and digital skills
U.S. j-schools and digital skills
Mindy McAdams
New skill sets for journalism
New skill sets for journalismNew skill sets for journalism
New skill sets for journalism
Mindy McAdams
Journalism blogs: An introduction
Journalism blogs: An introduction Journalism blogs: An introduction
Journalism blogs: An introduction
Mindy McAdams
Why Your Newsroom Should Be Using WordPress - ONA13
Why Your Newsroom Should Be Using WordPress - ONA13Why Your Newsroom Should Be Using WordPress - ONA13
Why Your Newsroom Should Be Using WordPress - ONA13
Mindy McAdams
Journalism's Future: Journalism, Not Newspapers
Journalism's Future: Journalism, Not NewspapersJournalism's Future: Journalism, Not Newspapers
Journalism's Future: Journalism, Not Newspapers
Mindy McAdams
Introduction to HTML5 Canvas
Introduction to HTML5 CanvasIntroduction to HTML5 Canvas
Introduction to HTML5 Canvas
Mindy McAdams
Beginning jQuery
Beginning jQueryBeginning jQuery
Beginning jQuery
Mindy McAdams
An Introduction to the DOM
An Introduction to the DOMAn Introduction to the DOM
An Introduction to the DOM
Mindy McAdams
JavaScript 101
JavaScript 101JavaScript 101
JavaScript 101
Mindy McAdams
HTML and Responsive Design
HTML and Responsive Design HTML and Responsive Design
HTML and Responsive Design
Mindy McAdams
Design Concepts and Web Design
Design Concepts and Web DesignDesign Concepts and Web Design
Design Concepts and Web Design
Mindy McAdams
Learning Python
Learning PythonLearning Python
Learning Python
Mindy McAdams
Freedom of Speech - Louis Brandeis
Freedom of Speech - Louis BrandeisFreedom of Speech - Louis Brandeis
Freedom of Speech - Louis Brandeis
Mindy McAdams
Networked Information Economy / Benkler
Networked Information Economy / BenklerNetworked Information Economy / Benkler
Networked Information Economy / Benkler
Mindy McAdams
Convergence Culture / Jenkins
Convergence Culture / JenkinsConvergence Culture / Jenkins
Convergence Culture / Jenkins
Mindy McAdams
How to Share Your Digital Stories
How to Share Your Digital StoriesHow to Share Your Digital Stories
How to Share Your Digital Stories
Mindy McAdams
Multimedia Journalism Innovations in the Classroom
Multimedia Journalism Innovations in the ClassroomMultimedia Journalism Innovations in the Classroom
Multimedia Journalism Innovations in the Classroom
Mindy McAdams
Summary of journalism faculty curriculum workshop
Summary of journalism faculty curriculum workshopSummary of journalism faculty curriculum workshop
Summary of journalism faculty curriculum workshop
Mindy McAdams
U.S. j-schools and digital skills
U.S. j-schools and digital skills U.S. j-schools and digital skills
U.S. j-schools and digital skills
Mindy McAdams
New skill sets for journalism
New skill sets for journalismNew skill sets for journalism
New skill sets for journalism
Mindy McAdams
Journalism blogs: An introduction
Journalism blogs: An introduction Journalism blogs: An introduction
Journalism blogs: An introduction
Mindy McAdams
Why Your Newsroom Should Be Using WordPress - ONA13
Why Your Newsroom Should Be Using WordPress - ONA13Why Your Newsroom Should Be Using WordPress - ONA13
Why Your Newsroom Should Be Using WordPress - ONA13
Mindy McAdams
Journalism's Future: Journalism, Not Newspapers
Journalism's Future: Journalism, Not NewspapersJournalism's Future: Journalism, Not Newspapers
Journalism's Future: Journalism, Not Newspapers
Mindy McAdams
Introduction to HTML5 Canvas
Introduction to HTML5 CanvasIntroduction to HTML5 Canvas
Introduction to HTML5 Canvas
Mindy McAdams
An Introduction to the DOM
An Introduction to the DOMAn Introduction to the DOM
An Introduction to the DOM
Mindy McAdams
HTML and Responsive Design
HTML and Responsive Design HTML and Responsive Design
HTML and Responsive Design
Mindy McAdams
Design Concepts and Web Design
Design Concepts and Web DesignDesign Concepts and Web Design
Design Concepts and Web Design
Mindy McAdams
Freedom of Speech - Louis Brandeis
Freedom of Speech - Louis BrandeisFreedom of Speech - Louis Brandeis
Freedom of Speech - Louis Brandeis
Mindy McAdams
Networked Information Economy / Benkler
Networked Information Economy / BenklerNetworked Information Economy / Benkler
Networked Information Economy / Benkler
Mindy McAdams
Convergence Culture / Jenkins
Convergence Culture / JenkinsConvergence Culture / Jenkins
Convergence Culture / Jenkins
Mindy McAdams
How to Share Your Digital Stories
How to Share Your Digital StoriesHow to Share Your Digital Stories
How to Share Your Digital Stories
Mindy McAdams

Recently uploaded (20)

Urinary Tract Infection & Sexually Transmt ted Diseases.pptx
Urinary Tract Infection & Sexually Transmt ted Diseases.pptxUrinary Tract Infection & Sexually Transmt ted Diseases.pptx
Urinary Tract Infection & Sexually Transmt ted Diseases.pptx
Ashish Umale
DUODENUM ANATOMY & Clinical Anatomy.pptx
DUODENUM ANATOMY & Clinical Anatomy.pptxDUODENUM ANATOMY & Clinical Anatomy.pptx
DUODENUM ANATOMY & Clinical Anatomy.pptx
Sid Roy
Antifungal agents by Mrs. Manjushri Dabhade
Antifungal agents by Mrs. Manjushri DabhadeAntifungal agents by Mrs. Manjushri Dabhade
Antifungal agents by Mrs. Manjushri Dabhade
Dabhade madam Dabhade
ANTIVIRAL agent by Mrs. Manjushri Dabhade
ANTIVIRAL agent by Mrs. Manjushri DabhadeANTIVIRAL agent by Mrs. Manjushri Dabhade
ANTIVIRAL agent by Mrs. Manjushri Dabhade
Dabhade madam Dabhade
Celine Caira presents at Women girls and AI Paving the way to a balanced digi...
Celine Caira presents at Women girls and AI Paving the way to a balanced digi...Celine Caira presents at Women girls and AI Paving the way to a balanced digi...
Celine Caira presents at Women girls and AI Paving the way to a balanced digi...
EduSkills OECD
MIPLM subject matter expert Dr Alihan Kaya
MIPLM subject matter expert Dr Alihan KayaMIPLM subject matter expert Dr Alihan Kaya
MIPLM subject matter expert Dr Alihan Kaya
MIPLM
Week 6 - EDL 290F - No Drop Ride (2025).pdf
Week 6 - EDL 290F - No Drop Ride (2025).pdfWeek 6 - EDL 290F - No Drop Ride (2025).pdf
Week 6 - EDL 290F - No Drop Ride (2025).pdf
Liz Walsh-Trevino
Unit1 Inroduction to Internal Combustion Engines
Unit1  Inroduction to Internal Combustion EnginesUnit1  Inroduction to Internal Combustion Engines
Unit1 Inroduction to Internal Combustion Engines
NileshKumbhar21
MIPLM subject matter expert Sascha Kamhuber
MIPLM subject matter expert Sascha KamhuberMIPLM subject matter expert Sascha Kamhuber
MIPLM subject matter expert Sascha Kamhuber
MIPLM
2025 Women Leaders Program - Award Winning
2025 Women Leaders Program  - Award Winning2025 Women Leaders Program  - Award Winning
2025 Women Leaders Program - Award Winning
Sonia McDonald
EDL 290F Week 5 - Facing Headwinds and Hairpin Turns (2025).pdf
EDL 290F Week 5  - Facing Headwinds and Hairpin Turns (2025).pdfEDL 290F Week 5  - Facing Headwinds and Hairpin Turns (2025).pdf
EDL 290F Week 5 - Facing Headwinds and Hairpin Turns (2025).pdf
Liz Walsh-Trevino
CRP401 Planning Studio VII Catalogue for Territorial Plans
CRP401 Planning Studio VII Catalogue for Territorial PlansCRP401 Planning Studio VII Catalogue for Territorial Plans
CRP401 Planning Studio VII Catalogue for Territorial Plans
City and Regional Planning, METU
EDL 290F Week 4 - Group Ride (2025).pdf
EDL 290F Week 4  - Group Ride (2025).pdfEDL 290F Week 4  - Group Ride (2025).pdf
EDL 290F Week 4 - Group Ride (2025).pdf
Liz Walsh-Trevino
How to Install Odoo 18 with Pycharm - Odoo 18 際際滷s
How to Install Odoo 18 with Pycharm - Odoo 18 際際滷sHow to Install Odoo 18 with Pycharm - Odoo 18 際際滷s
How to Install Odoo 18 with Pycharm - Odoo 18 際際滷s
Celine George
UTI Quinolones by Mrs. Manjushri Dabhade
UTI Quinolones by Mrs. Manjushri DabhadeUTI Quinolones by Mrs. Manjushri Dabhade
UTI Quinolones by Mrs. Manjushri Dabhade
Dabhade madam Dabhade
The basics of sentences session 10pptx.pptx
The basics of sentences session 10pptx.pptxThe basics of sentences session 10pptx.pptx
The basics of sentences session 10pptx.pptx
heathfieldcps1
The basics of sentences session 9pptx.pptx
The basics of sentences session 9pptx.pptxThe basics of sentences session 9pptx.pptx
The basics of sentences session 9pptx.pptx
heathfieldcps1
How to Manage Purchase Order Approval in Odoo 18
How to Manage Purchase Order Approval in Odoo 18How to Manage Purchase Order Approval in Odoo 18
How to Manage Purchase Order Approval in Odoo 18
Celine George
Unit 3: Combustion in Spark Ignition Engines
Unit 3: Combustion in Spark Ignition EnginesUnit 3: Combustion in Spark Ignition Engines
Unit 3: Combustion in Spark Ignition Engines
NileshKumbhar21
Design approaches and ethical challenges in Artificial Intelligence tools for...
Design approaches and ethical challenges in Artificial Intelligence tools for...Design approaches and ethical challenges in Artificial Intelligence tools for...
Design approaches and ethical challenges in Artificial Intelligence tools for...
Yannis
Urinary Tract Infection & Sexually Transmt ted Diseases.pptx
Urinary Tract Infection & Sexually Transmt ted Diseases.pptxUrinary Tract Infection & Sexually Transmt ted Diseases.pptx
Urinary Tract Infection & Sexually Transmt ted Diseases.pptx
Ashish Umale
DUODENUM ANATOMY & Clinical Anatomy.pptx
DUODENUM ANATOMY & Clinical Anatomy.pptxDUODENUM ANATOMY & Clinical Anatomy.pptx
DUODENUM ANATOMY & Clinical Anatomy.pptx
Sid Roy
Antifungal agents by Mrs. Manjushri Dabhade
Antifungal agents by Mrs. Manjushri DabhadeAntifungal agents by Mrs. Manjushri Dabhade
Antifungal agents by Mrs. Manjushri Dabhade
Dabhade madam Dabhade
ANTIVIRAL agent by Mrs. Manjushri Dabhade
ANTIVIRAL agent by Mrs. Manjushri DabhadeANTIVIRAL agent by Mrs. Manjushri Dabhade
ANTIVIRAL agent by Mrs. Manjushri Dabhade
Dabhade madam Dabhade
Celine Caira presents at Women girls and AI Paving the way to a balanced digi...
Celine Caira presents at Women girls and AI Paving the way to a balanced digi...Celine Caira presents at Women girls and AI Paving the way to a balanced digi...
Celine Caira presents at Women girls and AI Paving the way to a balanced digi...
EduSkills OECD
MIPLM subject matter expert Dr Alihan Kaya
MIPLM subject matter expert Dr Alihan KayaMIPLM subject matter expert Dr Alihan Kaya
MIPLM subject matter expert Dr Alihan Kaya
MIPLM
Week 6 - EDL 290F - No Drop Ride (2025).pdf
Week 6 - EDL 290F - No Drop Ride (2025).pdfWeek 6 - EDL 290F - No Drop Ride (2025).pdf
Week 6 - EDL 290F - No Drop Ride (2025).pdf
Liz Walsh-Trevino
Unit1 Inroduction to Internal Combustion Engines
Unit1  Inroduction to Internal Combustion EnginesUnit1  Inroduction to Internal Combustion Engines
Unit1 Inroduction to Internal Combustion Engines
NileshKumbhar21
MIPLM subject matter expert Sascha Kamhuber
MIPLM subject matter expert Sascha KamhuberMIPLM subject matter expert Sascha Kamhuber
MIPLM subject matter expert Sascha Kamhuber
MIPLM
2025 Women Leaders Program - Award Winning
2025 Women Leaders Program  - Award Winning2025 Women Leaders Program  - Award Winning
2025 Women Leaders Program - Award Winning
Sonia McDonald
EDL 290F Week 5 - Facing Headwinds and Hairpin Turns (2025).pdf
EDL 290F Week 5  - Facing Headwinds and Hairpin Turns (2025).pdfEDL 290F Week 5  - Facing Headwinds and Hairpin Turns (2025).pdf
EDL 290F Week 5 - Facing Headwinds and Hairpin Turns (2025).pdf
Liz Walsh-Trevino
CRP401 Planning Studio VII Catalogue for Territorial Plans
CRP401 Planning Studio VII Catalogue for Territorial PlansCRP401 Planning Studio VII Catalogue for Territorial Plans
CRP401 Planning Studio VII Catalogue for Territorial Plans
City and Regional Planning, METU
EDL 290F Week 4 - Group Ride (2025).pdf
EDL 290F Week 4  - Group Ride (2025).pdfEDL 290F Week 4  - Group Ride (2025).pdf
EDL 290F Week 4 - Group Ride (2025).pdf
Liz Walsh-Trevino
How to Install Odoo 18 with Pycharm - Odoo 18 際際滷s
How to Install Odoo 18 with Pycharm - Odoo 18 際際滷sHow to Install Odoo 18 with Pycharm - Odoo 18 際際滷s
How to Install Odoo 18 with Pycharm - Odoo 18 際際滷s
Celine George
UTI Quinolones by Mrs. Manjushri Dabhade
UTI Quinolones by Mrs. Manjushri DabhadeUTI Quinolones by Mrs. Manjushri Dabhade
UTI Quinolones by Mrs. Manjushri Dabhade
Dabhade madam Dabhade
The basics of sentences session 10pptx.pptx
The basics of sentences session 10pptx.pptxThe basics of sentences session 10pptx.pptx
The basics of sentences session 10pptx.pptx
heathfieldcps1
The basics of sentences session 9pptx.pptx
The basics of sentences session 9pptx.pptxThe basics of sentences session 9pptx.pptx
The basics of sentences session 9pptx.pptx
heathfieldcps1
How to Manage Purchase Order Approval in Odoo 18
How to Manage Purchase Order Approval in Odoo 18How to Manage Purchase Order Approval in Odoo 18
How to Manage Purchase Order Approval in Odoo 18
Celine George
Unit 3: Combustion in Spark Ignition Engines
Unit 3: Combustion in Spark Ignition EnginesUnit 3: Combustion in Spark Ignition Engines
Unit 3: Combustion in Spark Ignition Engines
NileshKumbhar21
Design approaches and ethical challenges in Artificial Intelligence tools for...
Design approaches and ethical challenges in Artificial Intelligence tools for...Design approaches and ethical challenges in Artificial Intelligence tools for...
Design approaches and ethical challenges in Artificial Intelligence tools for...
Yannis

Learning Python - Week 4

  • 1. Learn Python the Hard Way Exercises 27 34 http://learnpythonthehardway.org/
  • 2. New things in ex. 2734 Booleans: True, False, logic, operators if elif else: Note the relationship to True and False loops: 2 kinds, for and while lists and how to create a new list add and delete things from lists find out whats in a list
  • 3. How the Boolean AND works There is a very long bungee jump above a deep river gorge in Africa. You say: If the bungee jump looks safe and it is cheap, then I will do it.
  • 4. How the Boolean AND works If the bungee jump looks safe and it is cheap, then I will do it. looks safe = False (you wont do it) is cheap = False (you wont do it) Youll only do it if both conditions are TRUE.
  • 5. How the Boolean OR works There is a great party Tuesday night, but you are in danger of failing your Wednesday test. You say: If I finish studying in time or the test is canceled, then I will go to the party.
  • 6. How the Boolean OR works If I finish studying in time or the test is canceled, then I will go to the party. finish studying = True (can go) test canceled = True (can go) You can go if only one of the conditions is TRUE. Or both. But one is enough.
  • 7. and True and True : True True and False : False False and True : False False and False : False True or True : True True or False : True False or True : True False or False : False If the bungee jump looks safe and it is cheap, then I will do it. If I finish studying in time or the test is canceled, then I will go to the party. or
  • 8. Boolean operators (symbols) 1 != 0 1 == (3 2) 5 >= 1 10 <= 100 1 != (3 2) 1 == 0 5 <= 1 10 >= 100 True True True True False False False False
  • 10. if elif else (if statements)
  • 15. Loops Every programming language has loops A loop typically runs over and over until something makes it stop (different from a usual function, which runs only once) The for loop is a standard kind of loop for-loops can appear inside a function Exercise 32
  • 16. Loops Standard syntax for starting a for-loop in Python: for fruit in fruits: Exercise 32 Note that fruit could be any variable name, like x or a or cat. In this case, there must already be a list named fruits (more about lists in a minute)
  • 17. Loops Also standard syntax (but different) for starting a for-loop in Python: for i in range(0, 9): Exercise 32 In this case, we dont know the name of the list yet. Or maybe this loop does not even use a list.
  • 18. So, 2 different for-loops for fruit in fruits: print fruit Exercise 32 for i in range(0, 9): print "Hello!" Like functions, loops must be indented. They can have many lines. These are short just to make them simple.
  • 19. while-loops Exercise 33 The while loop is another standard kind of loop while-loops can appear inside a function If you can figure out how to do what you want with a for-loop, then use a for-loop. If you must use a while-loop, be careful that it will not run forever. If it does, its an infinite loop (which is NOT good).
  • 20. Lists In many languages, a list is called an array (but Zed says we should say list for Python) Lists can be giganticthere can be thousands of items in one list, or none The standard format of a list in Python: fruits = ['apples', 'oranges', 'pears', 'apricots'] Exercise 32 Note: If there are numbers in the list, they wont have quotes around them.
  • 21. Loops and Lists These two for-loops do exactly the same thing: fruits = ['apples', 'oranges', 'pears', 'apricots'] for fruit in fruits: print "A fruit of type: %s" % fruit for y in fruits: print "A fruit of type: %s" % y Exercise 32
  • 22. Lists You actually already saw a list in Exercise 25, when you did this: words = stuff.split(' ') After that, words contained a list: ['All', 'good', 'things', 'come', 'to', 'those', 'who', 'wait.'] You can use pop() and len() on any list Exercise 32
  • 23. Some things we do with lists fruits.pop() fruits.append("bananas") fruits.extend(["plums", "mangoes"]) del fruits[2] print fruits With append() you can add only one item at a time to the list.
  • 25. Items in lists Exercise 34: Items in lists can be counted. Items in lists can be referenced by number, but the first number is not 1 it is 0.
  • 26. Back to while-loops You might think the while-loops act a lot like the for-loops that used range (and you would be right) However, the while-loops are different The condition at the start of a while-loop could test for something not numeric, such as while we are not yet at the end of the file Note: for-loops are very common, and while-loops are less so (as Zed says: Usually a for-loop is better) Exercise 33
  • 27. Learning while-loops You really need to play with a lot of the extra credit or study drills in Exercise 33 to get this into your brain I made four different .py files to test all the comparisons that Zed recommends If you play with this, you can really understand how for-loops and while-loops are different Exercise 33
  • 29. A word of advice So Exercise 31 is long, but easy. You might feel like now its all getting easy BUT WAIT! No, its not. Exercise 32 introduces the for-loop. Exercise 33 introduces the while-loop. Exercise 34 introduces how we navigate through the elements in a list. These last 3 exercises are QUITE challenging!
  • 30. Indents in Python The usual way is to indent 4 spaces (not a tab indent actually type 4 spaces) If you accidentally type 3, or 5, or something else, and all the others are 4, Python will throw an error Most programming languages require multiple levels of indents, and these levels (and the format of indenting) are important, so take care
  • 31. An example of multiple indent levels within a Python program
  • 32. Learn Python the Hard Way Exercises 27 34 (now we know some stuff)

Editor's Notes

  • #2: SOURCE http://learnpythonthehardway.org/book/
  • #4: The way AND and OR work in programming languages is pretty much the same as the way we use them in real life.
  • #5: When you say IF with AND, you usually mean that both things have to happen.
  • #6: Again, the way AND and OR work in programming languages is pretty much the same as the way we use them in real life.
  • #7: When you say IF with OR, you usually mean that only one of the things has to happen.
  • #8: Questions?
  • #9: Questions?
  • #10: CODE EXAMPLE. LPTHW Exercise 28. Zed gives you lots of examples to play with. PLAY. It works!
  • #12: CODE EXAMPLE. LPTHW Exercises 29 and 30. Introduction to IF and IF ELSE.
  • #13: CODE EXAMPLE. LPTHW Exercises 29 and 30. Introduction to IF and IF ELSE.
  • #14: CODE EXAMPLE. LPTHW Exercise 30. Note that when the condition is met, none of the other elifs after that are executed. They do not run.
  • #16: NOTE: Im skipping over Exercise 31 because it is just more of the same from Exercise 30.
  • #20: Just a quick hop forward to exercise 33 we will come back to it later.
  • #23: Review LPTHW Exercise 25 and try to play with lists, using things you did in Ex. 25. WHY DID WE SPLIT? By turning freetext into a list, we can examine it in all kinds of ways. We are sort (alphabetical order), pop() words off the ends, move words from one list to another. And more.
  • #25: CODE EXAMPLE. LPTHW Exercise 32. Adding range allows you to make a different kind of for loop, with a limited number of times that it will run. This version (0, 100), would run 100 times, except that I built in a break.
  • #26: LPTHW Exercise 34 -- The most important thing to understand about this is that you can pluck out any item in a list, but you must remember that the first one is item 0 and not item 1.
  • #27: LPTHW Exercise 33
  • #28: LPTHW Exercise 33
  • #29: LPTHW Exercise 33 -- notice how I write comments for myself. I find them to be VERY helpful to me when I look at the code weeks or months later.
  • #30: These things are really important in programming AND you will see all of them AGAIN in JavaScript and jQuery, after Spring Break. So its in your best interest to spend time with them NOW and really try to understand them.
  • #32: This comes from an example in the book Visualize This, by Nathan Yau, pp. 288ff. The exercise is to color-code a U.S. map using data on unemployment in each U.S. county.
  • #33: Mindy McAdams - CONTACT http://mindymcadams.com/