Learn Python The Right Way
Learn Python The Right Way
Ritza
© 2021 Ritza
Contents
Copyright Notice . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
Foreword . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2
Preface . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4
How and why I came to use Python . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4
Finding a textbook . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5
Introducing programming with Python . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6
Building a community . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7
Contributor List . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8
Second Edition . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8
First Edition . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9
Chapter 4: Functions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 56
4.1. Functions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 56
4.2. Functions can call other functions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 59
4.3. Flow of execution . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 60
4.4. Functions that require arguments . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 63
4.5. Functions that return values . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 63
4.6. Variables and parameters are local . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 65
4.7. Turtles Revisited . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 66
4.8. Glossary . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 67
4.9. Exercises . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 69
Chapter 5: Conditionals . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 73
5.1. Boolean values and expressions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 73
5.2. Logical operators . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 74
5.3. Truth Tables . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 75
5.4. Simplifying Boolean Expressions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 75
5.5. Conditional execution . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 76
5.6. Omitting the else clause . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 78
5.7. Chained conditionals . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 79
5.8. Nested conditionals . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 81
5.9. The return statement . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 82
5.10. Logical opposites . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 82
5.11. Type conversion . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 84
5.12. A Turtle Bar Chart . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 85
5.13. Glossary . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 89
CONTENTS
5.14. Exercises . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 90
A.14. I’ve got a function or method that doesn’t return what I expect. . . . . . . . . . . . . . 422
A.15. I’m really, really stuck and I need help. . . . . . . . . . . . . . . . . . . . . . . . . . . . . 423
A.16. No, I really need help. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 423
courses on Java or C++. Python even borrows a number of features from functional programming
languages and can be used to introduce concepts that would be covered in more detail in courses on
Scheme and Lisp.
In reading Jeffrey’s preface, I am struck by his comments that Python allowed him to see a higher
level of success and a lower level of frustration and that he was able to move faster with better
results. Although these comments refer to his introductory course, I sometimes use Python for
these exact same reasons in advanced graduate level computer science courses at the University of
Chicago. In these courses, I am constantly faced with the daunting task of covering a lot of difficult
course material in a blistering nine week quarter. Although it is certainly possible for me to inflict
a lot of pain and suffering by using a language like C++, I have often found this approach to be
counterproductive—especially when the course is about a topic unrelated to just programming. I
find that using Python allows me to better focus on the actual topic at hand while allowing students
to complete substantial class projects.
Although Python is still a young and evolving language, I believe that it has a bright future in
education. This book is an important step in that direction. David Beazley University of Chicago
Author of the Python Essential Reference
Preface
By Jeffrey Elkner
This book owes its existence to the collaboration made possible by the Internet and the free
software movement. Its three authors—a college professor, a high school teacher, and a professional
programmer—never met face to face to work on it, but we have been able to collaborate closely,
aided by many other folks who have taken the time and energy to send us their feedback.
We think this book is a testament to the benefits and future possibilities of this kind of collaboration,
the framework for which has been put in place by Richard Stallman and the Free Software
Foundation.
scale in so short a time in C++, and this accomplishment, combined with Matt’s positive assessment
of Python, suggested that Python was the solution I was looking for.
Finding a textbook
Having decided to use Python in both of my introductory computer science classes the following
year, the most pressing problem was the lack of an available textbook.
Free documents came to the rescue. Earlier in the year, Richard Stallman had introduced me to Allen
Downey. Both of us had written to Richard expressing an interest in developing free educational
materials. Allen had already written a first-year computer science textbook, How to Think Like a
Computer Scientist. When I read this book, I knew immediately that I wanted to use it in my class.
It was the clearest and most helpful computer science text I had seen. It emphasized the processes
of thought involved in programming rather than the features of a particular language. Reading it
immediately made me a better teacher.
How to Think Like a Computer Scientist was not just an excellent book, but it had been released
under the GNU public license, which meant it could be used freely and modified to meet the needs
of its user. Once I decided to use Python, it occurred to me that I could translate Allen’s original Java
version of the book into the new language. While I would not have been able to write a textbook
on my own, having Allen’s book to work from made it possible for me to do so, at the same time
demonstrating that the cooperative development model used so well in software could also work for
educational materials.
Working on this book for the last two years has been rewarding for both my students and me, and
my students played a big part in the process. Since I could make instant changes whenever someone
found a spelling error or difficult passage, I encouraged them to look for mistakes in the book by
giving them a bonus point each time they made a suggestion that resulted in a change in the text.
This had the double benefit of encouraging them to read the text more carefully and of getting the
text thoroughly reviewed by its most important critics, students using it to learn computer science.
For the second half of the book on object-oriented programming, I knew that someone with more
real programming experience than I had would be needed to do it right. The book sat in an unfinished
state for the better part of a year until the open source community once again provided the needed
means for its completion.
I received an email from Chris Meyers expressing interest in the book. Chris is a professional
programmer who started teaching a programming course last year using Python at Lane Community
College in Eugene, Oregon. The prospect of teaching the course had led Chris to the book, and he
started helping out with it immediately. By the end of the school year he had created a companion
project on our Website at http://openbookproject.net called Python for Fun and was working with
some of my most advanced students as a master teacher, guiding them beyond where I could take
them.
Preface 6
1 class Hello {
2
3 public static void main (String[] args) {
4 System.out.println ("Hello, world.");
5 }
6 }
1 print("Hello, World!")
Even though this is a trivial example, the advantages of Python stand out. Yorktown’s Computer
Science I course has no prerequisites, so many of the students seeing this example are looking at
their first program. Some of them are undoubtedly a little nervous, having heard that computer
programming is difficult to learn. The Java version has always forced me to choose between
two unsatisfying options: either to explain the class Hello, public static void main, String[] args„
statements and risk confusing or intimidating some of the students right at the start, or to tell them,
Just don’t worry about all of that stuff now; we will talk about it later, and risk the same thing.
The educational objectives at this point in the course are to introduce students to the idea of a
programming statement and to get them to write their first program, thereby introducing them to
the programming environment. The Python program has exactly what is needed to do these things,
and nothing more.
Comparing the explanatory text of the program in each version of the book further illustrates what
this means to the beginning student. There are seven paragraphs of explanation of Hello, world! in
the Java version; in the Python version, there are only a few sentences. More importantly, the missing
six paragraphs do not deal with the big ideas in computer programming but with the minutia of Java
syntax. I found this same thing happening throughout the book. Whole paragraphs simply disappear
from the Python version of the text because Python’s much clearer syntax renders them unnecessary.
Using a very high-level language like Python allows a teacher to postpone talking about low-level
details of the machine until students have the background that they need to better make sense of
the details. It thus creates the ability to put first things first pedagogically. One of the best examples
of this is the way in which Python handles variables. In Java a variable is a name for a place that
Preface 7
holds a value if it is a built-in type, and a reference to an object if it is not. Explaining this distinction
requires a discussion of how the computer stores data. Thus, the idea of a variable is bound up with
the hardware of the machine. The powerful and fundamental concept of a variable is already difficult
enough for beginning students (in both computer science and algebra). Bytes and addresses do not
help the matter. In Python a variable is a name that refers to a thing. This is a far more intuitive
concept for beginning students and is much closer to the meaning of variable that they learned in
their math courses. I had much less difficulty teaching variables this year than I did in the past, and
I spent less time helping students with problems using them.
Another example of how Python aids in the teaching and learning of programming is in its syntax
for functions. My students have always had a great deal of difficulty understanding functions. The
main problem centers around the difference between a function definition and a function call, and
the related distinction between a parameter and an argument. Python comes to the rescue with
syntax that is nothing short of beautiful. Function definitions begin with the keyword def, so I
simply tell my students, When you define a function, begin with def, followed by the name of the
function that you are defining; when you call a function, simply call (type) out its name. Parameters
go with definitions; arguments go with calls. There are no return types, parameter types, or reference
and value parameters to get in the way, so I am now able to teach functions in less than half the
time that it previously took me, with better comprehension.
Using Python improved the effectiveness of our computer science program for all students. I saw
a higher general level of success and a lower level of frustration than I experienced teaching with
either C++ or Java. I moved faster with better results. More students left the course with the ability to
create meaningful programs and with the positive attitude toward the experience of programming
that this engenders.
Building a community
I have received emails from all over the globe from people using this book to learn or to teach pro-
gramming. A user community has begun to emerge, and many people have been contributing to the
project by sending in materials for the companion Website at http://openbookproject.net/pybiblio.
With the continued growth of Python, I expect the growth in the user community to continue
and accelerate. The emergence of this user community and the possibility it suggests for similar
collaboration among educators have been the most exciting parts of working on this project for me.
By working together, we can increase the quality of materials available for our use and save valuable
time. I invite you to join our community and look forward to hearing from you. Please write to me
at jeff@elkner.net.
Jeffrey Elkner
Governor’s Career and Technical Academy in Arlington
Arlington, Virginia
Contributor List
To paraphrase the philosophy of the Free Software Foundation, this book is free like free speech, but
not necessarily free like free pizza. It came about because of a collaboration that would not have
been possible without the GNU Free Documentation License. So we would like to thank the Free
Software Foundation for developing this license and, of course, making it available to us.
We would also like to thank the more than 100 sharp-eyed and thoughtful readers who have sent
us suggestions and corrections over the past few years. In the spirit of free software, we decided to
express our gratitude in the form of a contributor list. Unfortunately, this list is not complete, but we
are doing our best to keep it up to date. It was also getting too large to include everyone who sends
in a typo or two. You have our gratitude, and you have the personal satisfaction of making a book
you found useful better for you and everyone else who uses it. New additions to the list for the 2nd
edition will be those who have made on-going contributions.
If you have a chance to look through the list, you should realize that each person here has spared
you and all subsequent readers from the confusion of a technical error or a less-than-transparent
explanation, just by sending us a note.
Impossible as it may seem after so many corrections, there may still be errors in this book. If you
should stumble across one, we hope you will take a minute to contact us. The email address (for
the Python 3 version of the book) is p.wentworth@ru.ac.za . Substantial changes made due to your
suggestions will add you to the next version of the contributor list (unless you ask to be omitted).
Thank you!
Second Edition
• An email from Mike MacHenry set me straight on tail recursion. He not only pointed out an
error in the presentation, but suggested how to correct it.
• It wasn’t until 5th Grade student Owen Davies came to me in a Saturday morning Python
enrichment class and said he wanted to write the card game, Gin Rummy, in Python that
I finally knew what I wanted to use as the case study for the object oriented programming
chapters.
• A special thanks to pioneering students in Jeff’s Python Programming class at GCTAA during
the 2009-2010 school year: Safath Ahmed, Howard Batiste, Louis Elkner-Alfaro, and Rachel
Hancock. Your continual and thoughtfull feedback led to changes in most of the chapters of
the book. You set the standard for the active and engaged learners that will help make the new
Governor’s Academy what it is to become. Thanks to you this is truly a student tested text.
• Thanks in a similar vein to the students in Jeff’s Computer Science class at the HB-Woodlawn
program during the 2007-2008 school year: James Crowley, Joshua Eddy, Eric Larson, Brian
McGrail, and Iliana Vazuka.
Contributor List 9
First Edition
• Lloyd Hugh Allen sent in a correction to Section 8.4.
• Yvon Boulianne sent in a correction of a semantic error in Chapter 5.
• Fred Bremmer submitted a correction in Section 2.1.
• Jonah Cohen wrote the Perl scripts to convert the LaTeX source for this book into beautiful
HTML.
• Michael Conlon sent in a grammar correction in Chapter 2 and an improvement in style in
Chapter 1, and he initiated discussion on the technical aspects of interpreters.
• Benoit Girard sent in a correction to a humorous mistake in Section 5.6.
• Courtney Gleason and Katherine Smith wrote horsebet.py, which was used as a case study in
an earlier version of the book. Their program can now be found on the website.
• Lee Harr submitted more corrections than we have room to list here, and indeed he should be
listed as one of the principal editors of the text.
• James Kaylin is a student using the text. He has submitted numerous corrections.
• David Kershaw fixed the broken catTwice function in Section 3.10.
• Eddie Lam has sent in numerous corrections to Chapters 1, 2, and 3. He also fixed the Makefile
so that it creates an index the first time it is run and helped us set up a versioning scheme.
• Man-Yong Lee sent in a correction to the example code in Section 2.4.
• David Mayo pointed out that the word unconsciously in Chapter 1 needed to be changed to
subconsciously .
• Chris McAloon sent in several corrections to Sections 3.9 and 3.10.
• Matthew J. Moelter has been a long-time contributor who sent in numerous corrections and
suggestions to the book.
• Simon Dicon Montford reported a missing function definition and several typos in Chapter 3.
He also found errors in the increment function in Chapter 13.
Contributor List 10
The engine that translates and runs Python is called the Python Interpreter: There are two ways to
use it: immediate mode and script mode. In immediate mode, you type Python expressions into the
Python Interpreter window, and the interpreter immediately shows the result:
The >>> or > is called the Python prompt. The interpreter uses the prompt to indicate that it is ready
for instructions. We typed 2 + 2, and the interpreter evaluated our expression, and replied 4, and
on the next line it gave a new prompt, indicating that it is ready for more input.
Working directly in the interpreter is convenient for testing short bits of code because you get
immediate feedback. Think of it as scratch paper used to help you work out problems. Anything
longer than a few lines should be put into a script. Scripts have the advantage that they can be saved
to disk, printed, and so on. To create a script, you can enter the code into the middle pane, as shown
below
To execute the program, click the Run button in Replit. You’re now a computer programmer! Let’s
take a look at some more theory before we start writing more advanced programs.
Chapter 1: The way of the program 13
output
math
conditional execution
• Check for certain conditions and execute the appropriate sequence of statements.
repetition
Believe it or not, that’s pretty much all there is to it. Every program you’ve ever used, no matter
how complicated, is made up of instructions that look more or less like these. Thus, we can describe
programming as the process of breaking a large, complex task into smaller and smaller subtasks until
the subtasks are simple enough to be performed with sequences of these basic instructions.
That may be a little vague, but we will come back to this topic later when we talk about algorithms.
It is useful to distinguish between them in order to track them down more quickly.
In some ways, debugging is like detective work. You are confronted with clues, and you have to
infer the processes and events that led to the results you see.
Debugging is also like an experimental science. Once you have an idea what is going wrong, you
modify your program and try again. If your hypothesis was correct, then you can predict the result
of the modification, and you take a step closer to a working program. If your hypothesis was wrong,
you have to come up with a new one. As Sherlock Holmes pointed out, When you have eliminated
the impossible, whatever remains, however improbable, must be the truth. (A. Conan Doyle, The
Sign of Four)
For some people, programming and debugging are the same thing. That is, programming is the
process of gradually debugging a program until it does what you want. The idea is that you should
start with a program that does something and make small modifications, debugging them as you go,
so that you always have a working program.
For example, Linux is an operating system kernel that contains millions of lines of code, but it started
out as a simple program Linus Torvalds used to explore the Intel 80386 chip. According to Larry
Greenfield, one of Linus’s earlier projects was a program that would switch between displaying
AAAA and BBBB. This later evolved to Linux (The Linux Users’ Guide Beta Version 1).
Later chapters will make more suggestions about debugging and other programming practices.
The second type of syntax rule pertains to the structure of a statement— that is, the way the
tokens are arranged. The statement 3=+6$ is structurally illegal because you can’t place a plus sign
immediately after an equal sign. Similarly, molecular formulas have to have subscripts after the
element name, not before. And in our Python example, if we omitted the comma, or if we changed
the two parentheses around to say print)"Happy New Year for ",2013( our statement would still
have six legal and valid tokens, but the structure is illegal.
When you read a sentence in English or a statement in a formal language, you have to figure out
what the structure of the sentence is (although in a natural language you do this subconsciously).
This process is called parsing.
For example, when you hear the sentence, “The other shoe fell”, you understand that the other shoe
is the subject and fell is the verb. Once you have parsed a sentence, you can figure out what it means,
or the semantics of the sentence. Assuming that you know what a shoe is and what it means to fall,
you will understand the general implication of this sentence.
Although formal and natural languages have many features in common — tokens, structure, syntax,
and semantics — there are many differences:
ambiguity
• Natural languages are full of ambiguity, which people deal with by using contextual clues and
other information. Formal languages are designed to be nearly or completely unambiguous,
which means that any statement has exactly one meaning, regardless of context.
redundancy
• In order to make up for ambiguity and reduce misunderstandings, natural languages employ
lots of redundancy. As a result, they are often verbose. Formal languages are less redundant
and more concise.
literalness
• Formal languages mean exactly what they say. On the other hand, natural languages are full
of idiom and metaphor. If someone says, “The other shoe fell”, there is probably no shoe and
nothing falling. You’ll need to find the original joke to understand the idiomatic meaning of
the other shoe falling. Yahoo! Answers thinks it knows!
People who grow up speaking a natural language—everyone—often have a hard time adjusting to
formal languages. In some ways, the difference between formal and natural language is like the
difference between poetry and prose, but more so:
poetry
• Words are used for their sounds as well as for their meaning, and the whole poem together
creates an effect or emotional response. Ambiguity is not only common but often deliberate.
Chapter 1: The way of the program 17
prose
• The literal meaning of words is more important, and the structure contributes more meaning.
Prose is more amenable to analysis than poetry but still often ambiguous.
program
• The meaning of a computer program is unambiguous and literal, and can be understood entirely
by analysis of the tokens and structure.
Here are some suggestions for reading programs (and other formal languages). First, remember that
formal languages are much more dense than natural languages, so it takes longer to read them. Also,
the structure is very important, so it is usually not a good idea to read from top to bottom, left to
right. Instead, learn to parse the program in your head, identifying the tokens and interpreting the
structure. Finally, the details matter. Little things like spelling errors and bad punctuation, which
you can get away with in natural languages, can make a big difference in a formal language.
1 print("Hello, World!")
This is an example of using the print function, which doesn’t actually print anything on paper. It
displays a value on the screen. In this case, the result shown is
1 Hello, World!
The quotation marks in the program mark the beginning and end of the value; they don’t appear in
the result.
Some people judge the quality of a programming language by the simplicity of the Hello, World!
program. By this standard, Python does about as well as possible.
Chapter 1: The way of the program 18
1.10. Comments
As programs get bigger and more complicated, they get more difficult to read. Formal languages are
dense, and it is often difficult to look at a piece of code and figure out what it is doing, or why.
For this reason, it is a good idea to add notes to your programs to explain in natural language what
the program is doing.
A comment in a computer program is text that is intended only for the human reader — it is
completely ignored by the interpreter.
In Python, the # token starts a comment. The rest of the line is ignored. Here is a new version of
Hello, World!.
1 #---------------------------------------------------
2 # This demo program shows off how elegant Python is!
3 # Written by Joe Soap, December 2010.
4 # Anyone may freely copy or modify this program.
5 #---------------------------------------------------
6
7 print("Hello, World!") # Isn't this easy!
You’ll also notice that we’ve left a blank line in the program. Blank lines are also ignored by the
interpreter, but comments and blank lines can make your programs much easier for humans to
parse. Use them liberally!
1.11. Glossary
algorithm
A set of specific steps for solving a category of problems.
bug
An error in a program.
comment
Information in a program that is meant for other programmers (or anyone reading the source code)
and has no effect on the execution of the program.
debugging
The process of finding and removing any of the three kinds of programming errors.
exception
Another name for a runtime error.
Chapter 1: The way of the program 19
formal language
Any one of the languages that people have designed for specific purposes, such as representing
mathematical ideas or computer programs; all programming languages are formal
languages.
high-level language
A programming language like Python that is designed to be easy for humans to read and write.
immediate mode
A style of using Python where we type expressions at the command prompt, and the results are
shown immediately. Contrast with script, and see the entry under Python shell.
interpreter
The engine that executes your Python scripts or expressions.
low-level language
A programming language that is designed to be easy for a computer to execute; also called machine
language or assembly language.
natural language
Any one of the languages that people speak that evolved naturally.
object code
The output of the compiler after it translates the program.
parse
To examine a program and analyze the syntactic structure.
portability
A property of a program that can run on more than one kind of computer.
print function
A function used in a program or script that causes the Python interpreter to display a value on its
output device.
problem solving
The process of formulating a problem, finding a solution, and expressing the solution.
program
a sequence of instructions that specifies to a computer actions and computations to be performed.
Python shell
An interactive user interface to the Python interpreter. The user of a Python shell types commands at
the prompt (>>>), and presses the return key to send these commands immediately to the interpreter
Chapter 1: The way of the program 20
for processing. The word shell comes from Unix. In the PyScripter used in this RLE version of the
book, the Interpreter Window is where we’d do the immediate mode interaction.
runtime error
An error that does not occur until the program has started to execute but that prevents the program
from continuing.
script
A program stored in a file (usually one that will be interpreted).
semantic error
An error in a program that makes it do something other than what the programmer intended.
semantics
The meaning of a program.
source code
A program in a high-level language before being compiled.
syntax
The structure of a program.
syntax error
An error in a program that makes it impossible to parse — and therefore impossible to interpret.
token
One of the basic elements of the syntactic structure of a program, analogous to a word in a natural
language.
1.12. Exercises
1. Write an English sentence with understandable semantics but incorrect syntax. Write another
English sentence which has correct syntax but has semantic errors.
2. Using the Python interpreter, type 1 + 2 and then hit return. Python evaluates this expression,
displays the result, and then shows another prompt. * is the multiplication operator, and ** is
the exponentiation operator. Experiment by entering different expressions and recording what
is displayed by the Python interpreter.
3. Type 1 2 and then hit return. Python tries to evaluate the expression, but it can’t because the
expression is not syntactically legal. Instead, it shows the error message:
Chapter 1: The way of the program 21
In many cases, Python indicates where the syntax error occurred, but it is not always right,
and it doesn’t give you much information about what is wrong.
So, for the most part, the burden is on you to learn the syntax rules.
In this case, Python is complaining because there is no operator between the numbers.
See if you can find a few more examples of things that will produce error messages when you
enter them at the Python prompt. Write down what you enter at the prompt and the last line
of the error message that Python reports back to you.
4. Type print("hello"). Python executes this, which has the effect of printing the letters h-e-l-l-
o. Notice that the quotation marks that you used to enclose the string are not part of the output.
Now type "hello" and describe your result. Make notes of when you see the quotation marks
and when you don’t.
5. Type cheese without the quotation marks. The output will look something like this:
This is a run-time error; specifically, it is a NameError, and even more specifically, it is an error
because the name cheese is not defined. If you don’t know what that means yet, you will soon.
6. Type 6 + 4 * 9 at the Python prompt and hit enter. Record what happens.
Now create a Python script with the following contents:
1 6 + 4 * 9
What happens when you run this script? Now change the script contents to:
1 print(6 + 4 * 9)
Whenever an expression is typed at the Python prompt, it is evaluated and the result is automatically
shown on the line below. (Like on your calculator, if you type this expression you’ll get the result 42.)
Chapter 1: The way of the program 22
It is hardly ever necessary to use the print function in immediate mode at the command prompt.
Chapter 2: Variables, expressions and
statements
(Watch a video based on this chapter here on YouTube⁵.)
Not surprisingly, strings belong to the class str and integers belong to the class int. Less obviously,
numbers with a decimal point belong to a class called float, because these numbers are represented in
a format called floating-point. At this stage, you can treat the words class and type interchangeably.
We’ll come back to a deeper understanding of what a class is in later chapters.
1 >>> type(3.2)
2 <class 'float'>
What about values like "17" and "3.2"? They look like numbers, but they are in quotation marks
like strings.
⁵https://youtu.be/gIvstR16coI
Chapter 2: Variables, expressions and statements 24
1 >>> type("17")
2 <class 'str'>
3 >>> type("3.2")
4 <class 'str'>
They’re strings!
Strings in Python can be enclosed in either single quotes (‘) or double quotes (“), or three of each (‘’’
or “””)
Double quoted strings can contain single quotes inside them, as in "Bruce's beard", and single
quoted strings can have double quotes inside them, as in 'The knights who say "Ni!"'.
Strings enclosed with three occurrences of either quote symbol are called triple quoted strings. They
can contain either single or double quotes:
Python doesn’t care whether you use single or double quotes or the three-of-a-kind quotes to
surround your strings: once it has parsed the text of your program or command, the way it stores
the value is identical in all cases, and the surrounding quotes are not part of the value. But when
the interpreter wants to display a string, it has to decide which quotes to use to make it look like a
string.
Chapter 2: Variables, expressions and statements 25
So the Python language designers usually chose to surround their strings by single quotes. What do
you think would happen if the string already contained single quotes?
When you type a large integer, you might be tempted to use commas between groups of three digits,
as in 42,000. This is not a legal integer in Python, but it does mean something else, which is legal:
1 >>> 42000
2 42000
3 >>> 42,000
4 (42, 0)
Well, that’s not what we expected at all! Because of the comma, Python chose to treat this as a pair
of values. We’ll come back to learn about pairs later. But, for the moment, remember not to put
commas or spaces in your integers, no matter how big they are. Also revisit what we said in the
previous chapter: formal languages are strict, the notation is concise, and even the smallest change
might mean something quite different from what you intended.
2.2. Variables
One of the most powerful features of a programming language is the ability to manipulate variables.
A variable is a name that refers to a value.
The assignment statement gives a value to a variable:
This example makes three assignments. The first assigns the string value "What's up, Doc?" to a
variable named message. The second gives the integer 17 to n, and the third assigns the floating-point
number 3.14159 to a variable called pi.
The assignment token, =, should not be confused with equals, which uses the token ==. The
assignment statement binds a name, on the left-hand side of the operator, to a value, on the right-
hand side. This is why you will get an error if you enter:
Chapter 2: Variables, expressions and statements 26
1 >>> 17 = n
2 File "<interactive input>", line 1
3 SyntaxError: can't assign to literal
Tip:
When reading or writing code, say to yourself “n is assigned 17” or “n gets the value 17”. Don’t say
“n equals 17”.
A common way to represent variables on paper is to write the name with an arrow pointing to the
variable’s value. This kind of figure is called a state snapshot because it shows what state each of
the variables is in at a particular instant in time. (Think of it as the variable’s state of mind). This
diagram shows the result of executing the assignment statements:
State Snapshot
If you ask the interpreter to evaluate a variable, it will produce the value that is currently linked to
the variable:
1 >>> message
2 "What's up, Doc?"
3 >>> n
4 17
5 >>> pi
6 3.14159
We use variables in a program to “remember” things, perhaps the current score at the football game.
But variables are variable. This means they can change over time, just like the scoreboard at a football
game. You can assign a value to a variable, and later assign a different value to the same variable.
(This is different from maths. In maths, if you give x the value 3, it cannot change to link to a different
value half-way through your calculations!)
Chapter 2: Variables, expressions and statements 27
You’ll notice we changed the value of day three times, and on the third assignment we even made
it refer to a value that was of a different type.
A great deal of programming is about having the computer remember things, e.g. The number of
missed calls on your phone, and then arranging to update or change the variable when you miss
another call.
76trombones is illegal because it does not begin with a letter. more$ is illegal because it contains an
illegal character, the dollar sign. But what’s wrong with class?
It turns out that class is one of the Python keywords. Keywords define the language’s syntax rules
and structure, and they cannot be used as variable names.
Python has thirty-something keywords (and every now and again improvements to Python intro-
duce or eliminate one or two):
Chapter 2: Variables, expressions and statements 28
You might want to keep this list handy. If the interpreter complains about one of your variable names
and you don’t know why, see if it is on this list.
Programmers generally choose names for their variables that are meaningful to the human readers
of the program — they help the programmer document, or remember, what the variable is used for.
Caution
Beginners sometimes confuse “meaningful to the human readers” with “meaningful to the computer”.
So they’ll wrongly think that because they’ve called some variable average or pi, it will somehow
magically calculate an average, or magically know that the variable pi should have a value like
3.14159. No! The computer doesn’t understand what you intend the variable to mean.
So you’ll find some instructors who deliberately don’t choose meaningful names when they teach
beginners — not because we don’t think it is a good habit, but because we’re trying to reinforce the
message that you — the programmer — must write the program code to calculate the average, and
you must write an assignment statement to give the variable pi the value you want it to have.
2.4. Statements
A statement is an instruction that the Python interpreter can execute. We have only seen the
assignment statement so far. Some other kinds of statements that we’ll see shortly are while
statements, for statements, if statements, and import statements. (There are other kinds too!)
When you type a statement on the command line, Python executes it. Statements don’t produce any
result.
1 >>> 1 + 1
2 2
3 >>> len("hello")
4 5
Chapter 2: Variables, expressions and statements 29
In this example len is a built-in Python function that returns the number of characters in a string.
We’ve previously seen the print and the type functions, so this is our third example of a function!
The evaluation of an expression produces a value, which is why expressions can appear on the right
hand side of assignment statements. A value all by itself is a simple expression, and so is a variable.
1 >>> 17
2 17
3 >>> y = 3.14
4 >>> x = len("hello")
5 >>> x
6 5
7 >>> y
8 3.14
The tokens +, -, and *, and the use of parenthesis for grouping, mean in Python what they mean in
mathematics. The asterisk (*) is the token for multiplication, and ** is the token for exponentiation.
1 >>> 2 ** 3
2 8
3 >>> 3 ** 2
4 9
When a variable name appears in the place of an operand, it is replaced with its value before the
operation is performed.
Addition, subtraction, multiplication, and exponentiation all do what you expect.
Example: so let us convert 645 minutes into hours:
Chapter 2: Variables, expressions and statements 30
Oops! In Python 3, the division operator /always yields a floating point result. What we might have
wanted to know was how many whole hours there are, and how many minutes remain. Python
gives us two different flavors of the division operator. The second, called floor division uses the
token //. Its result is always a whole number — and if it has to adjust the number it always moves
it to the left on the number line. So 6 // 4 yields 1, but -6 // 4 might surprise you!
1 >>> 7 / 4
2 1.75
3 >>> 7 // 4
4 1
5 >>> minutes = 645
6 >>> hours = minutes // 60
7 >>> hours
8 10
Take care that you choose the correct flavor of the division operator. If you’re working with
expressions where you need floating point values, use the division operator that does the division
accurately.
1 >>> int(3.14)
2 3
3 >>> int(3.9999) # This doesn't round to the closest int!
4 3
5 >>> int(3.0)
6 3
7 >>> int(-3.999) # Note that the result is closer to zero
8 -3
9 >>> int(minutes / 60)
10 10
11 >>> int("2345") # Parse a string to produce an int
12 2345
13 >>> int(17) # It even works if arg is already an int
14 17
15 >>> int("23 bottles")
The type converter float can turn an integer, a float, or a syntactically legal string into a float:
1 >>> float(17)
2 17.0
3 >>> float("123.45")
4 123.45
1 >>> str(17)
2 '17'
3 >>> str(123.45)
4 '123.45'
1. Parentheses have the highest precedence and can be used to force an expression to evaluate in
the order you want. Since expressions in parentheses are evaluated first, 2 * (3-1) is 4, and
(1+1)**(5-2) is 8. You can also use parentheses to make an expression easier to read, as in
(minute * 100) / 60, even though it doesn’t change the result.
2. Exponentiation has the next highest precedence, so 2**1+1 is 3 and not 4, and 3*1**3 is 3 and
not 27.
3. Multiplication and both Division operators have the same precedence, which is higher than
Addition and Subtraction, which also have the same precedence. So 2*3-1 yields 5 rather than
4, and 5-2*2 is 1, not 6.
Operators with the same precedence are evaluated from left-to-right. In algebra we say they are
left-associative. So in the expression 6-3+2, the subtraction happens first, yielding 3. We then add
2 to get the result 5. If the operations had been evaluated from right to left, the result would have
been 6-(3+2), which is 1. (The acronym PEDMAS could mislead you to thinking that division has
higher precedence than multiplication, and addition is done ahead of subtraction - don’t be misled.
Subtraction and addition are at the same precedence, and the left-to-right rule applies.)
Due to some historical quirk, an exception to the left-to-right left-associative rule is the exponenti-
ation operator **, so a useful hint is to always use parentheses to force exactly the order you want
when exponentiation is involved:
The immediate mode command prompt of Python is great for exploring and experimenting with
expressions like this.
Interestingly, the + operator does work with strings, but for strings, the + operator represents
concatenation, not addition. Concatenation means joining the two operands by linking them end-
to-end. For example:
Chapter 2: Variables, expressions and statements 33
1 fruit = "banana"
2 baked_good = " nut bread"
3 print(fruit + baked_good)
The output of this program is banana nut bread. The space before the word nut is part of the string,
and is necessary to produce the space between the concatenated strings.
The * operator also works on strings; it performs repetition. For example, 'Fun'*3 is 'FunFunFun'.
One of the operands has to be a string; the other has to be an integer.
On one hand, this interpretation of + and * makes sense by analogy with addition and multiplication.
Just as 4*3 is equivalent to 4+4+4, we expect "Fun"*3 to be the same as "Fun"+"Fun"+"Fun", and it
is. On the other hand, there is a significant way in which string concatenation and repetition are
different from integer addition and multiplication. Can you think of a property that addition and
multiplication have that string concatenation and repetition do not?
2.10. Input
There is a built-in function in Python for getting input from the user:
A sample run of this script in Replit would populate your input question in the console to the left
like this:
Input Prompt
The user of the program can enter the name and press enter, and when this happens the text that
has been entered is returned from the input function, and in this case assigned to the variable n.
Even if you asked the user to enter their age, you would get back a string like "17". It would be your
job, as the programmer, to convert that string into a int or a float, using the int or float converter
functions we saw earlier.
Chapter 2: Variables, expressions and statements 34
2.11. Composition
So far, we have looked at the elements of a program — variables, expressions, statements, and
function calls — in isolation, without talking about how to combine them.
One of the most useful features of programming languages is their ability to take small building
blocks and compose them into larger chunks.
For example, we know how to get the user to enter some input, we know how to convert the string
we get into a float, we know how to write a complex expression, and we know how to print values.
Let’s put these together in a small four-step program that asks the user to input a value for the radius
of a circle, and then computes the area of the circle from the formula
Area of a circle
Now let’s compose the first two lines into a single line of code, and compose the second two lines
into another line of code.
Such compact code may not be most understandable for humans, but it does illustrate how we can
compose bigger chunks from our building blocks.
Chapter 2: Variables, expressions and statements 35
If you’re ever in doubt about whether to compose code or fragment it into smaller steps, try to make
it as simple as you can for the human to follow. My choice would be the first case above, with four
separate steps.
2.13. Glossary
assignment statement
Chapter 2: Variables, expressions and statements 36
A statement that assigns a value to a name (variable). To the left of the assignment operator, =, is
a name. To the right of the assignment token is an expression which is evaluated by the Python
interpreter and then assigned to the name. The difference between the left and right hand sides of
the assignment statement is often confusing to new programmers. In the following assignment:
1 n = n + 1
n plays a very different role on each side of the =. On the right it is a value and makes up part of the
expression which will be evaluated by the Python interpreter before assigning it to the name on the
left.
assignment token
= is Python’s assignment token. Do not confuse it with equals, which is an operator for comparing
values.
composition
The ability to combine simple expressions and statements into compound statements and expressions
in order to represent complex computations concisely.
concatenate
To join two strings end-to-end.
data type
A set of values. The type of a value determines how it can be used in expressions. So far, the types
you have seen are integers (int), floating-point numbers (float), and strings (str).
evaluate
To simplify an expression by performing the operations in order to yield a single value.
expression
A combination of variables, operators, and values that represents a single result value.
float
A Python data type which stores floating-point numbers. Floating-point numbers are stored
internally in two parts: a base and an exponent. When printed in the standard format, they look
like decimal numbers. Beware of rounding errors when you use floats, and remember that they are
only approximate values.
floor division
An operator (denoted by the token //) that divides one number by another and yields an integer, or,
if the result is not already an integer, it yields the next smallest integer.
int
A Python data type that holds positive and negative whole numbers.
Chapter 2: Variables, expressions and statements 37
keyword
A reserved word that is used by the compiler to parse programs; you cannot use keywords like if,
def, and while as variable names.
modulus operator
An operator, denoted with a percent sign (%), that works on integers and yields the remainder when
one number is divided by another.
operand
One of the values on which an operator operates.
operator
A special symbol that represents a simple computation like addition, multiplication, or string
concatenation.
rules of precedence
The set of rules governing the order in which expressions involving multiple operators and operands
are evaluated.
state snapshot
A graphical representation of a set of variables and the values to which they refer, taken at a
particular instant during the program’s execution.
statement
An instruction that the Python interpreter can execute. So far we have only seen the assignment
statement, but we will soon meet the import statement and the for statement.
str
A Python data type that holds a string of characters.
value
A number or string (or other things to be named later) that can be stored in a variable or computed
in an expression.
variable
A name that refers to a value.
variable name
A name given to a variable. Variable names in Python consist of a sequence of letters (a..z, A..Z,
and _) and digits (0..9) that begins with a letter. In best programming practice, variable names should
be chosen so that they describe their use in the program, making the program self documenting.
Chapter 2: Variables, expressions and statements 38
2.14. Exercises
1. Take the sentence: All work and no play makes Jack a dull boy. Store each word in a separate
variable, then print out the sentence on one line using print.
2. Add parenthesis to the expression 6 * 1 - 2 to change its value from 4 to -6.
3. Place a comment before a line of code that previously worked, and record what happens when
you rerun the program.
4. Start the Python interpreter and enter bruce + 4 at the prompt. This will give you an error:
Write a Python program that assigns the principal amount of $10000 to variable P, assign to n
the value 12, and assign to r the interest rate of 8%. Then have the program prompt the user
for the number of years t that the money will be compounded for. Calculate and print the final
amount after t years.
6. Evaluate the following numerical expressions in your head, then use the Python interpreter to
check your results:
1 >>> 5 % 2
2 >>> 9 % 5
3 >>> 15 % 12
4 >>> 12 % 15
5 >>> 6 % 6
6 >>> 0 % 7
7 >>> 7 % 0
What happened with the last example? Why? If you were able to correctly anticipate the
computer’s response in all but the last one, it is time to move on. If not, take time now to
Chapter 2: Variables, expressions and statements 39
make up examples of your own. Explore the modulus operator until you are confident you
understand how it works.
7. You look at the clock and it is exactly 2pm. You set an alarm to go off in 51 hours. At what time
does the alarm go off? (Hint: you could count on your fingers, but this is not what we’re after.
If you are tempted to count on your fingers, change the 51 to 5100.)
8. Write a Python program to solve the general version of the above problem. Ask the user for
the time now (in hours), and ask for the number of hours to wait. Your program should output
what the time will be on the clock when the alarm goes off.
Chapter 3: Hello, little turtles!
There are many modules in Python that provide very powerful features that we can use in our own
programs. Some of these can send email, or fetch web pages. The one we’ll look at in this chapter
allows us to create turtles and get them to draw shapes and patterns.
The turtles are fun, but the real purpose of the chapter is to teach ourselves a little more Python, and
to develop our theme of computational thinking, or thinking like a computer scientist. Most of the
Python covered here will be explored in more depth later.
Turtle Window
Here are a couple of things we’ll need to understand about this program.
The first line tells Python to load a module named turtle. That module brings us two new types
that we can use: the Turtle type, and the Screen type. The dot notation turtle.Turtle means “The
Turtle type that is defined within the turtle module”. (Remember that Python is case sensitive, so the
module name, with a lowercase t, is different from the type Turtle.)
We then create and open what it calls a screen (we would prefer to call it a window), which we
assign to variable wn. Every window contains a canvas, which is the area inside the window on
which we can draw.
In line 3 we create a turtle. The variable alex is made to refer to this turtle.
So these first three lines have set things up, we’re ready to get our turtle to draw on our canvas.
In lines 5-7, we instruct the object alex to move, and to turn. We do this by invoking, or activating,
alex’s methods — these are the instructions that all turtles know how to respond to.
The last line plays a part too: the wn variable refers to the window shown above. When we invoke
its mainloop method, it enters a state where it waits for events (like keypresses, or mouse movement
and clicks). The program will terminate when the user closes the window.
An object can have various methods — things it can do — and it can also have attributes —
(sometimes called properties). For example, each turtle has a color attribute. The method invocation
alex.color("red") will make alex red, and drawing will be red too. (Note the word color is spelled
the American way!)
The color of the turtle, the width of its pen, the position of the turtle within the window, which way
it is facing, and so on are all part of its current state. Similarly, the window object has a background
Chapter 3: Hello, little turtles! 42
color, and some text in the title bar, and a size and position on the screen. These are all part of the
state of the window object.
Quite a number of methods exist that allow us to modify the turtle and the window objects. We’ll
just show a couple. In this program we’ve only commented those lines that are different from the
previous example (and we’ve used a different variable name for this turtle):
1 import turtle
2 wn = turtle.Screen()
3 wn.bgcolor("lightgreen") # Set the window background color
4 wn.title("Hello, Tess!") # Set the window title
5
6 tess = turtle.Turtle()
7 tess.color("blue") # Tell tess to change her color
8 tess.pensize(3) # Tell tess to set her pen width
9
10 tess.forward(50)
11 tess.left(120)
12 tess.forward(50)
13
14 wn.mainloop()
When we run this program, this new window pops up, and will remain on the screen until we close
it.
tess mainloop
1. Modify this program so that before it creates the window, it prompts the user to enter the
desired background color. It should store the user’s responses in a variable, and modify the
color of the window according to the user’s wishes. (Hint: you can find a list of permitted color
names at http://www.tcl.tk/man/tcl8.4/TkCmd/colors.htm. It includes some quite unusual ones,
like “peach puff” and “HotPink”.)
2. Do similar changes to allow the user, at runtime, to set tess’ color.
3. Do the same for the width of tess’ pen. Hint: your dialog with the user will return a string,
but tess’ pensize method expects its argument to be an int. So you’ll need to convert the string
to an int before you pass it to pensize.
1 import turtle
2 wn = turtle.Screen() # Set up the window and its attributes
3 wn.bgcolor("lightgreen")
4 wn.title("Tess & Alex")
5
6 tess = turtle.Turtle() # Create tess and set some attributes
7 tess.color("hotpink")
8 tess.pensize(5)
9
10 alex = turtle.Turtle() # Create alex
11
12 tess.forward(80) # Make tess draw equilateral triangle
13 tess.left(120)
14 tess.forward(80)
15 tess.left(120)
16 tess.forward(80)
17 tess.left(120) # Complete the triangle
18
19 tess.right(180) # Turn tess around
20 tess.forward(80) # Move her away from the origin
21
22 alex.forward(50) # Make alex draw a square
23 alex.left(90)
24 alex.forward(50)
25 alex.left(90)
Chapter 3: Hello, little turtles! 44
26 alex.forward(50)
27 alex.left(90)
28 alex.forward(50)
29 alex.left(90)
30
31 wn.mainloop()
Here is what happens when alex completes his rectangle, and tess completes her triangle:
• There are 360 degrees in a full circle. If we add up all the turns that a turtle makes, no matter
what steps occurred between the turns, we can easily figure out if they add up to some multiple
of 360. This should convince us that alex is facing in exactly the same direction as he was when
he was first created. (Geometry conventions have 0 degrees facing East, and that is the case
here too!)
• We could have left out the last turn for alex, but that would not have been as satisfying. If
we’re asked to draw a closed shape like a square or a rectangle, it is a good idea to complete all
the turns and to leave the turtle back where it started, facing the same direction as it started in.
This makes reasoning about the program and composing chunks of code into bigger programs
easier for us humans!
Chapter 3: Hello, little turtles! 45
• We did the same with tess: she drew her triangle, and turned through a full 360 degrees. Then
we turned her around and moved her aside. Even the blank line 18 is a hint about how the
programmer’s mental chunking is working: in big terms, tess’ movements were chunked as
“draw the triangle” (lines 12-17) and then “move away from the origin” (lines 19 and 20).
• One of the key uses for comments is to record our mental chunking, and big ideas. They’re not
always explicit in the code.
• And, uh-huh, two turtles may not be enough for a herd. But the important idea is that the turtle
module gives us a kind of factory that lets us create as many turtles as we need. Each instance
has its own state and behaviour.
1 for f in ["Joe","Zoe","Brad","Angelina","Zuki","Thandi","Paris"]:
2 invite = "Hi " + f + ". Please come to my party on Saturday!"
3 print(invite)
4 # more code can follow here ...
• The variable f in the for statement at line 1 is called the loop variable. We could have chosen
any other variable name instead.
Lines 2 and 3 are the loop body. The loop body is always indented. The indentation determines
exactly what statements are “in the body of the loop”.
Chapter 3: Hello, little turtles! 46
• On each iteration or pass of the loop, first a check is done to see if there are still more items to
be processed. If there are none left (this is called the terminating condition of the loop), the
loop has finished. Program execution continues at the next statement after the loop body, (e.g.
in this case the next statement below the comment in line 4).
• If there are items still to be processed, the loop variable is updated to refer to the next item in
the list. This means, in this case, that the loop body is executed here 7 times, and each time f
will refer to a different friend.
• At the end of each execution of the body of the loop, Python returns to the for statement, to
see if there are more items to be handled, and to assign the next one to f.
1 for i in [0,1,2,3]:
2 alex.forward(50)
3 alex.left(90)
Some observations:
• While “saving some lines of code” might be convenient, it is not the big deal here. What is
much more important is that we’ve found a “repeating pattern” of statements, and reorganized
our program to repeat the pattern. Finding the chunks and somehow getting our programs
arranged around those chunks is a vital skill in computational thinking.
Chapter 3: Hello, little turtles! 48
• The values [0,1,2,3] were provided to make the loop body execute 4 times. We could have
used any four values, but these are the conventional ones to use. In fact, they are so popular
that Python gives us special built-in range objects:
1 for i in range(4):
2 # Executes the body with i = 0, then 1, then 2, then 3
3 for x in range(10):
4 # Sets x to each of ... [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
1 for i in range(4):
2 alex.forward(50)
3 alex.left(90)
By now you should be able to see how to change our previous program so that tess can also use a
for loop to draw her equilateral triangle.
A variable can also be assigned a value that is a list. So lists can also be used in more general
situations, not only in the for loop. The code above could be rewritten like this:
Chapter 3: Hello, little turtles! 49
1 alex.penup()
2 alex.forward(100) # This moves alex, but no line is drawn
3 alex.pendown()
Every turtle can have its own shape. The ones available “out of the box” are arrow, blank, circle,
classic, square, triangle, turtle.
1 alex.shape("turtle")
Chapter 3: Hello, little turtles! 50
Turtle Shape
We can speed up or slow down the turtle’s animation speed. (Animation controls how quickly the
turtle turns and moves forward). Speed settings can be set between 1 (slowest) to 10 (fastest). But if
we set the speed to 0, it has a special meaning — turn off animation and go as fast as possible.
1 alex.speed(10)
A turtle can “stamp” its footprint onto the canvas, and this will remain after the turtle has moved
somewhere else. Stamping works, even when the pen is up.
Let’s do an example that shows off some of these new features:
1 import turtle
2 wn = turtle.Screen()
3 wn.bgcolor("lightgreen")
4 tess = turtle.Turtle()
5 tess.shape("turtle")
6 tess.color("blue")
7
8 tess.penup() # This is new
9 size = 20
10 for i in range(30):
11 tess.stamp() # Leave an impression on the canvas
12 size = size + 3 # Increase the size on every iteration
13 tess.forward(size) # Move tess along
14 tess.right(24) # ... and turn her
Chapter 3: Hello, little turtles! 51
15
16 wn.mainloop()
Turtle Spiral
Be careful now! How many times was the body of the loop executed? How many turtle images do
we see on the screen? All except one of the shapes we see on the screen here are footprints created
by stamp. But the program still only has one turtle instance — can you figure out which one here is
the real tess? (Hint: if you’re not sure, write a new line of code after the for loop to change tess’ color,
or to put her pen down and draw a line, or to change her shape, etc.)
Chapter 3: Hello, little turtles! 52
3.7. Glossary
attribute
Some state or value that belongs to a particular object. For example, tess has a color.
canvas
A surface within a window where drawing takes place.
control flow
See flow of execution in the next chapter.
for loop
A statement in Python for convenient repetition of statements in the body of the loop.
loop body
Any number of statements nested inside a loop. The nesting is indicated by the fact that the
statements are indented under the for loop statement.
loop variable
A variable used as part of a for loop. It is assigned a different value on each iteration of the loop.
instance
An object of a certain type, or class. tess and alex are different instances of the class Turtle.
method
A function that is attached to an object. Invoking or activating the method causes the object to
respond in some way, e.g. forward is the method when we say tess.forward(100).
invoke
An object has methods. We use the verb invoke to mean activate the method. Invoking a
method is done by putting parentheses after the method name, with some possible arguments. So
tess.forward() is an invocation of the forward method.
module
A file containing Python definitions and statements intended for use in other Python programs. The
contents of a module are made available to the other program by using the import statement.
object
A “thing” to which a variable can refer. This could be a screen window, or one of the turtles we have
created.
range
A built-in function in Python for generating sequences of integers. It is especially useful when we
need to write a for loop that executes a fixed number of times.
Chapter 3: Hello, little turtles! 53
terminating condition
A condition that occurs which causes a loop to stop repeating its body. In the for loops we saw in
this chapter, the terminating condition has been when there are no more elements to assign to the
loop variable.
3.8. Exercises
1. Write a program that prints We like Python's turtles! 1000 times.
2. Give three attributes of your cellphone object. Give three methods of your cellphone.
3. Write a program that uses a for loop to print
1 One of the months of the year is January
2 One of the months of the year is February
3 ...
4. Suppose our turtle tess is at heading 0 — facing east. We execute the statement tess.left(3645).
What does tess do, and what is her final heading?
5. Assume you have the assignment xs = [12, 10, 32, 3, 66, 17, 42, 99, 20]
a. Write a loop that prints each of the numbers on a new line.
b. Write a loop that prints each number and its square on a new line.
c. Write a loop that adds all the numbers from the list into a variable called total. You should
set the total variable to have the value 0 before you start adding them up, and print the value
in total after the loop has completed.
d. Print the product of all the numbers in the list. (product means all multiplied together)
6. Use for loops to make a turtle draw these regular polygons (regular means all sides the same
lengths, all angles the same):
- An equilateral triangle
- A square
- A hexagon (six sides)
- An octagon (eight sides)
7. A drunk pirate makes a random turn and then takes 100 steps forward, makes another random
turn, takes another 100 steps, turns another random amount, etc. A social science student
records the angle of each turn before the next 100 steps are taken. Her experimental data is
[160, -43, 270, -97, -43, 200, -940, 17, -86]. (Positive angles are counter-clockwise.)
Use a turtle to draw the path taken by our drunk friend.
8. Enhance your program above to also tell us what the drunk pirate’s heading is after he has
finished stumbling around. (Assume he begins at heading 0).
9. If you were going to draw a regular polygon with 18 sides, what angle would you need to turn
the turtle at each corner?
10. At the interactive prompt, anticipate what each of the following lines will do, and then record
what happens. Score yourself, giving yourself one point for each one you anticipate correctly:
Chapter 3: Hello, little turtles! 54
Star
Hints:
- Try this on a piece of paper, moving and turning your cellphone as if it was a turtle. Watch how
many complete rotations your cellphone makes before you complete the star. Since each full rotation
is 360 degrees, you can figure out the total number of degrees that your phone was rotated through.
If you divide that by 5, because there are five points to the star, you’ll know how many degrees to
turn the turtle at each point.
• You can hide a turtle behind its invisibility cloak if you don’t want it shown. It will still draw
its lines if its pen is down. The method is invoked as tess.hideturtle(). To make the turtle
visible again, use tess.showturtle().
12. Write a program to draw a face of a clock that looks something like this:
Chapter 3: Hello, little turtles! 55
Clock face
13. Create a turtle, and assign it to a variable. When you ask for its type, what do you get?
14. What is the collective noun for turtles? (Hint: they don’t come in herds.)
15. What the collective noun for pythons? Is a python a viper? Is a python venomous?
Chapter 4: Functions
4.1. Functions
In Python, a function is a named sequence of statements that belong together. Their primary purpose
is to help us organize programs into chunks that match how we think about the problem.
The syntax for a function definition is:
We can make up any names we want for the functions we create, except that we can’t use a name
that is a Python keyword, and the names must follow the rules for legal identifiers.
There can be any number of statements inside the function, but they have to be indented from the
def. In the examples in this book, we will use the standard indentation of four spaces. Function
definitions are the second of several compound statements we will see, all of which have the same
pattern:
1. A header line which begins with a keyword and ends with a colon.
2. A body consisting of one or more Python statements, each indented the same amount — the
Python style guide recommends 4 spaces — from the header line.
We’ve already seen the for loop which follows this pattern.
So looking again at the function definition, the keyword in the header is def, which is followed
by the name of the function and some parameters enclosed in parentheses. The parameter list may
be empty, or it may contain any number of parameters separated from one another by commas. In
either case, the parentheses are required. The parameters specifies what information, if any, we have
to provide in order to use the new function.
Suppose we’re working with turtles, and a common operation we need is to draw squares. “Draw a
square” is an abstraction, or a mental chunk, of a number of smaller steps. So let’s write a function
to capture the pattern of this “building block”:
Chapter 4: Functions 57
1 import turtle
2
3 def draw_square(t, sz):
4 """Make turtle t draw a square of sz."""
5 for i in range(4):
6 t.forward(sz)
7 t.left(90)
8
9
10 wn = turtle.Screen() # Set up the window and its attributes
11 wn.bgcolor("lightgreen")
12 wn.title("Alex meets a function")
13
14 alex = turtle.Turtle() # Create alex
15 draw_square(alex, 50) # Call the function to draw the square
16 wn.mainloop()
alex function
This function is named draw_square. It has two parameters: one to tell the function which turtle to
move around, and the other to tell it the size of the square we want drawn. Make sure you know
where the body of the function ends — it depends on the indentation, and the blank lines don’t count
for this purpose!
Docstrings for documentation
If the first thing after the function header is a string, it is treated as a docstring and gets special
treatment in Python and in some programming tools. For example, when we type a built-in function
name with an unclosed parenthesis in Repl.it, a tooltip pops up, telling us what arguments the
function takes, and it shows us any other text contained in the docstring.
Chapter 4: Functions 58
Docstrings are the key way to document our functions in Python and the documentation part is
important. Because whoever calls our function shouldn’t have to need to know what is going on in
the function or how it works; they just need to know what arguments our function takes, what it
does, and what the expected result is. Enough to be able to use the function without having to look
underneath. This goes back to the concept of abstraction of which we’ll talk more about.
Docstrings are usually formed using triple-quoted strings as they allow us to easily expand the
docstring later on should we want to write more than a one-liner.
Just to differentiate from comments, a string at the start of a function (a docstring) is retrievable
by Python tools at runtime. By contrast, comments are completely eliminated when the program is
parsed.
Defining a new function does not make the function run. To do that we need a function call. We’ve
already seen how to call some built-in functions like print, range and int. Function calls contain
the name of the function being executed followed by a list of values, called arguments, which are
assigned to the parameters in the function definition. So in the second last line of the program, we
call the function, and pass alex as the turtle to be manipulated, and 50 as the size of the square we
want. While the function is executing, then, the variable sz refers to the value 50, and the variable
t refers to the same turtle instance that the variable alex refers to.
Once we’ve defined a function, we can call it as often as we like, and its statements will be executed
each time we call it. And we could use it to get any of our turtles to draw a square. In the next
example, we’ve changed the draw_square function a little, and we get tess to draw 15 squares, with
some variations.
1 import turtle
2
3 def draw_multicolor_square(t, sz):
4 """Make turtle t draw a multi-color square of sz."""
5 for i in ["red", "purple", "hotpink", "blue"]:
6 t.color(i)
7 t.forward(sz)
8 t.left(90)
9
10 wn = turtle.Screen() # Set up the window and its attributes
11 wn.bgcolor("lightgreen")
12
13 tess = turtle.Turtle() # Create tess and set some attributes
14 tess.pensize(3)
15
16 size = 20 # Size of the smallest square
17 for i in range(15):
18 draw_multicolor_square(tess, size)
19 size = size + 10 # Increase the size for next time
Chapter 4: Functions 59
The parameter names are deliberately chosen as single letters to ensure they’re not misunderstood.
In real programs, once we’ve had more experience, we will insist on better variable names than this.
But the point is that the program doesn’t “understand” that we’re drawing a rectangle, or that the
parameters represent the width and the height. Concepts like rectangle, width, and height are the
meaning we humans have, not concepts that the program or the computer understands.
Thinking like a scientist involves looking for patterns and relationships. In the code above, we’ve
done that to some extent. We did not just draw four sides. Instead, we spotted that we could draw
the rectangle as two halves, and used a loop to repeat that pattern twice.
But now we might spot that a square is a special kind of rectangle. We already have a function that
draws a rectangle, so we can use that to draw our square.
Chapter 4: Functions 60
So far, it may not be clear why it is worth the trouble to create all of these new functions. Actually,
there are a lot of reasons, but this example demonstrates two:
1. Creating a new function gives us an opportunity to name a group of statements. Functions can
simplify a program by hiding a complex computation behind a single command. The function
(including its name) can capture our mental chunking, or abstraction, of the problem.
2. Creating a new function can make a program smaller by eliminating repetitive code.
As we might expect, we have to create a function before we can execute it. In other words, the
function definition has to be executed before the function is called.
That sounds simple enough, until we remember that one function can call another. While in the
middle of one function, the program might have to execute the statements in another function. But
while executing that new function, the program might have to execute yet another function!
Fortunately, Python is adept at keeping track of where it is, so each time a function completes, the
program picks up where it left off in the function that called it. When it gets to the end of the program,
it terminates.
What’s the moral of this sordid tale? When we read a program, don’t read from top to bottom.
Instead, follow the flow of execution.
Watch the flow of execution in action
Repl.it does not have “single-stepping” functionality. For this we would recommend a different IDE
like PyScripter⁶.
In PyScripter, we can watch the flow of execution by “single-stepping” through any program.
PyScripter will highlight each line of code just before it is about to be executed.
PyScripter also lets us hover the mouse over any variable in the program, and it will pop up the
current value of that variable. So this makes it easy to inspect the “state snapshot” of the program —
the current values that are assigned to the program’s variables.
This is a powerful mechanism for building a deep and thorough understanding of what is happening
at each step of the way. Learn to use the single-stepping feature well, and be mentally proactive: as
you work through the code, challenge yourself before each step: “What changes will this line make
to any variables in the program?” and “Where will flow of execution go next?”
Let us go back and see how this works with the program above that draws 15 multicolor squares.
First, we’re going to add one line of magic below the import statement — not strictly necessary, but
it will make our lives much simpler, because it prevents stepping into the module containing the
turtle code.
1 import turtle
2 __import__("turtle").__traceable__ = False
Now we’re ready to begin. Put the mouse cursor on the line of the program where we create the
turtle screen, and press the F4 key. This will run the Python program up to, but not including, the
line where we have the cursor. Our program will “break” now, and provide a highlight on the next
line to be executed, something like this:
⁶https://sourceforge.net/projects/pyscripter/
Chapter 4: Functions 62
PyScripter Breakpoint
At this point we can press the F7 key (step into) repeatedly to single step through the code. Observe
as we execute lines 10, 11, 12, … how the turtle window gets created, how its canvas color is changed,
how the title gets changed, how the turtle is created on the canvas, and then how the flow of
execution gets into the loop, and from there into the function, and into the function’s loop, and
then repeatedly through the body of that loop.
While we do this, we can also hover our mouse over some of the variables in the program, and
confirm that their values match our conceptual model of what is happening.
After a few loops, when we’re about to execute line 20 and we’re starting to get bored, we can use
the key F8 to “step over” the function we are calling. This executes all the statements in the function,
but without having to step through each one. We always have the choice to either “go for the detail”,
or to “take the high-level view” and execute the function as a single chunk.
There are some other options, including one that allow us to resume execution without further
stepping. Find them under the Run menu of PyScripter.
Chapter 4: Functions 63
1 >>> abs(5)
2 5
3 >>> abs(-5)
4 5
In this example, the arguments to the abs function are 5 and -5.
Some functions take more than one argument. For example the built-in function pow takes two
arguments, the base and the exponent. Inside the function, the values that are passed get assigned
to variables called parameters.
1 >>> pow(2, 3)
2 8
3 >>> pow(7, 4)
4 2401
Another built-in function that takes more than one argument is max.
max can be passed any number of arguments, separated by commas, and will return the largest value
passed. The arguments can be either simple values or expressions. In the last example, 503 is returned,
since it is larger than 33, 125, and 1.
A function that returns a value is called a fruitful function in this book. The opposite of a fruitful
function is void function — one that is not executed for its resulting value, but is executed because
it does something useful. (Languages like Java, C#, C and C++ use the term “void function”, other
languages like Pascal call it a procedure.) Even though void functions are not executed for their
resulting value, Python always wants to return something. So if the programmer doesn’t arrange to
return a value, Python will automatically return the value None.
How do we write our own fruitful function? In the exercises at the end of chapter 2 we saw the
standard formula for compound interest, which we’ll now write as a fruitful function:
Compound interest
• The return statement is followed by an expression (a in this case). This expression will be
evaluated and returned to the caller as the “fruit” of calling this function.
• We prompted the user for the principal amount. The type of toInvest is a string, but we need a
number before we can work with it. Because it is money, and could have decimal places, we’ve
used the float type converter function to parse the string and return a float.
• Notice how we entered the arguments for 8% interest, compounded 12 times per year, for 5
years.
• When we run this, we get the output
Chapter 4: Functions 65
This is a bit messy with all these decimal places, but remember that Python doesn’t understand
that we’re working with money: it just does the calculation to the best of its ability, without
rounding. Later we’ll see how to format the string that is printed in such a way that it does get
nicely rounded to two decimal places before printing.
• The line toInvest = float(input("How much do you want to invest?")) also shows yet
another example of composition — we can call a function like float, and its arguments can be
the results of other function calls (like input) that we’ve called along the way.
Notice something else very important here. The name of the variable we pass as an argument —
toInvest — has nothing to do with the name of the parameter — p. It is as if p = toInvest is
executed when final_amt is called. It doesn’t matter what the value was named in the caller, in
final_amt its name is p.
These short variable names are getting quite tricky, so perhaps we’d prefer one of these versions
instead:
They all do the same thing. Use your judgement to write code that can be best understood by other
humans! Short variable names are more economical and sometimes make code easier to read: E = mc2
would not be nearly so memorable if Einstein had used longer variable names! If you do prefer short
names, make sure you also have some comments to enlighten the reader about what the variables
are used for.
1 >>> a
2 NameError: name 'a' is not defined
The variable a is local to final_amt, and is not visible outside the function.
Additionally, a only exists while the function is being executed — we call this its lifetime. When the
execution of the function terminates, the local variables are destroyed.
Parameters are also local, and act like local variables. For example, the lifetimes of p, r, n, t begin
when final_amt is called, and the lifetime ends when the function completes its execution.
So it is not possible for a function to set some local variable to a value, complete its execution, and
then when it is called again next time, recover the local variable. Each call of the function creates
new local variables, and their lifetimes expire when the function returns to the caller.
13 """
14 Set up a turtle with the given color and pensize.
15 Returns the new turtle.
16 """
17 t = turtle.Turtle()
18 t.color(colr)
19 t.pensize(sz)
20 return t
21
22
23 wn = make_window("lightgreen", "Tess and Alex dancing")
24 tess = make_turtle("hotpink", 5)
25 alex = make_turtle("black", 1)
26 dave = make_turtle("yellow", 2)
The trick about refactoring code is to anticipate which things we are likely to want to change each
time we call the function: these should become the parameters, or changeable parts, of the functions
we write.
4.8. Glossary
argument
A value provided to a function when the function is called. This value is assigned to the correspond-
ing parameter in the function. The argument can be the result of an expression which may involve
operators, operands and calls to other fruitful functions.
body
The second part of a compound statement. The body consists of a sequence of statements all indented
the same amount from the beginning of the header. The standard amount of indentation used within
the Python community is 4 spaces.
compound statement
A statement that consists of two parts:
1. header - which begins with a keyword determining the statement type, and ends with a colon.
2. body - containing one or more statements indented the same amount from the header.
1 keyword ... :
2 statement
3 statement ...
docstring
A special string that is attached to a function as its __doc__ attribute. Tools like Repl.it can use
docstrings to provide documentation or hints for the programmer. When we get to modules, classes,
and methods, we’ll see that docstrings can also be used there.
flow of execution
The order in which statements are executed during a program run.
frame
A box in a stack diagram that represents a function call. It contains the local variables and parameters
of the function.
function
A named sequence of statements that performs some useful operation. Functions may or may not
take parameters and may or may not produce a result.
function call
A statement that executes a function. It consists of the name of the function followed by a list of
arguments enclosed in parentheses.
function composition
Using the output from one function call as the input to another.
function definition
A statement that creates a new function, specifying its name, parameters, and the statements it
executes.
fruitful function
A function that returns a value when it is called.
header line
The first part of a compound statement. A header line begins with a keyword and ends with a colon
(:)
import statement
A statement which permits functions and variables defined in another Python module to be brought
into the environment of another script. To use the features of the turtle, we need to first import the
turtle module.
lifetime
Chapter 4: Functions 69
Variables and objects have lifetimes — they are created at some point during program execution,
and will be destroyed at some time.
local variable
A variable defined inside a function. A local variable can only be used inside its function. Parameters
of a function are also a special kind of local variable.
parameter
A name used inside a function to refer to the value which was passed to it as an argument.
refactor
A fancy word to describe reorganizing our program code, usually to make it more understandable.
Typically, we have a program that is already working, then we go back to “tidy it up”. It often involves
choosing better variable names, or spotting repeated patterns and moving that code into a function.
stack diagram
A graphical representation of a stack of functions, their variables, and the values to which they refer.
traceback
A list of the functions that are executing, printed when a runtime error occurs. A traceback is also
commonly referred to as a stack trace, since it lists the functions in the order in which they are
stored in the runtime stack.⁷
void function
The opposite of a fruitful function: one that does not return a value. It is executed for the work it
does, rather than for the value it returns.
4.9. Exercises
1. Write a void (non-fruitful) function to draw a square. Use it in a program to draw the image
shown below. Assume each side is 20 units. (Hint: notice that the turtle has already moved away
from the ending point of the last square when the program ends.)
Five Squares
⁷http://en.wikipedia.org/wiki/Runtime_stack
Chapter 4: Functions 70
2. Write a program to draw this. Assume the innermost square is 20 units per side, and each
successive square is 20 units bigger, per side, than the one inside it.
Nested Squares
3. Write a void function draw_poly(t, n, sz) which makes a turtle draw a regular polygon.
When called with draw_poly(tess, 8, 50), it will draw a shape like this:
Regular polygon
Regular Polygon
Chapter 4: Functions 71
5. The two spirals in this picture differ only by the turn angle. Draw both.
Spirals
6. Write a void function draw_equitriangle(t, sz) which calls draw_poly from the previous
question to have its turtle draw a equilateral triangle.
7. Write a fruitful function sum_to(n) that returns the sum of all integer numbers up to and
including n. So sum_to(10) would be 1+2+3…+10 which would return the value 55.
8. Write a function area_of_circle(r) which returns the area of a circle of radius r.
9. Write a void function to draw a star, where the length of each side is 100 units. (Hint: You
should turn the turtle by 144 degrees at each point.)
Star
10. Extend your program above. Draw five stars, but between each, pick up the pen, move forward
by 350 units, turn right by 144, put the pen down, and draw the next star. You’ll get something like
this:
Chapter 4: Functions 72
Five Stars
1 >>> type(True)
2 <class 'bool'>
3 >>> type(true)
4 Traceback (most recent call last):
5 File "<interactive input>", line 1, in <module>
6 NameError: name 'true' is not defined
A Boolean expression is an expression that evaluates to produce a result which is a Boolean value.
For example, the operator == tests if two values are equal. It produces (or yields) a Boolean value:
In the first statement, the two operands evaluate to equal values, so the expression evaluates to True;
in the second statement, 5 is not equal to 6, so we get False.
The == operator is one of six common comparison operators which all produce a bool result; here
are all six:
Chapter 5: Conditionals 74
Although these operations are probably familiar, the Python symbols are different from the
mathematical symbols. A common error is to use a single equal sign (=) instead of a double equal
sign (==). Remember that= is an assignment operator and == is a comparison operator. Also, there is
no such thing as =< or =>.
Like any other types we’ve seen so far, Boolean values can be assigned to variables, printed, etc.
1 >>> age = 18
2 >>> old_enough_to_get_driving_licence = age >= 17
3 >>> print(old_enough_to_get_driving_licence)
4 True
5 >>> type(old_enough_to_get_driving_licence)
6 <class 'bool'>
In a Truth Table, we sometimes use T and F as shorthand for the two Boolean values: here is the
truth table describing or:
a b a or b
F F F
F T T
T F T
T T T
The third logical operator, not, only takes a single operand, so its truth table only has two rows:
a not a
F T
T F
1 n * 0 == 0
Here we see a different algebra — the Boolean algebra — which provides rules for working with
Boolean values.
First, the and operator:
Chapter 5: Conditionals 76
1 x or False == x
2 False or x == x
3 y or x == x or y
4 x or True == True
5 True or x == True
6 x or x == x
1 not (not x) == x
1 if x % 2 == 0:
2 print(x, " is even.")
3 print("Did you know that 2 is the only even number that is prime?")
4 else:
5 print(x, " is odd.")
6 print("Did you know that multiplying two odd numbers " +
7 "always gives an odd result?")
The Boolean expression after the if statement is called the condition. If it is true, then all the
indented statements get executed. If not, then all the statements indented under the else clause get
executed.
Flowchart of an if statement with an else clause
Chapter 5: Conditionals 77
Flowchart - if else
1 if BOOLEAN EXPRESSION:
2 STATEMENTS_1 # Executed if condition evaluates to True
3 else:
4 STATEMENTS_2 # Executed if condition evaluates to False
As with the function definition from the last chapter and other compound statements like for, the if
statement consists of a header line and a body. The header line begins with the keyword if followed
by a Boolean expression and ends with a colon (:).
The indented statements that follow are called a block. The first unindented statement marks the
end of the block.
Each of the statements inside the first block of statements are executed in order if the Boolean
expression evaluates to True. The entire first block of statements is skipped if the Boolean expression
evaluates to False, and instead all the statements indented under the else clause are executed.
There is no limit on the number of statements that can appear under the two clauses of an if
statement, but there has to be at least one statement in each block. Occasionally, it is useful to have
a section with no statements (usually as a place keeper, or scaffolding, for code we haven’t written
yet). In that case, we can use the pass statement, which does nothing except act as a placeholder.
Chapter 5: Conditionals 78
Flowchart - if only
Another form of the if statement is one in which the else clause is omitted entirely. In this case,
when the condition evaluates to True, the statements are executed, otherwise the flow of execution
continues to the statement after the if.
Chapter 5: Conditionals 79
1 if x < 0:
2 print("The negative number ", x, " is not valid here.")
3 x = 42
4 print("I've decided to use the number 42 instead.")
5
6 print("The square root of ", x, "is", math.sqrt(x))
In this case, the print function that outputs the square root is the one after the if — not because
we left a blank line, but because of the way the code is indented. Note too that the function call
math.sqrt(x) will give an error unless we have an import math statement, usually placed near the
top of our script.
Python terminology
Python documentation sometimes uses the term suite of statements to mean what we have called a
block here. They mean the same thing, and since most other languages and computer scientists use
the word block, we’ll stick with that.
Notice too that else is not a statement. The if statement has two clauses, one of which is the
(optional) else clause.
1 if x < y:
2 STATEMENTS_A
3 elif x > y:
4 STATEMENTS_B
5 else:
6 STATEMENTS_C
elif is an abbreviation of else if. Again, exactly one branch will be executed. There is no limit of
the number of elif statements but only a single (and optional) final else statement is allowed and
it must be the last branch in the statement:
1 if choice == "a":
2 function_one()
3 elif choice == "b":
4 function_two()
5 elif choice == "c":
6 function_three()
7 else:
8 print("Invalid choice.")
Each condition is checked in order. If the first is false, the next is checked, and so on. If one of them
is true, the corresponding branch executes, and the statement ends. Even if more than one condition
is true, only the first true branch executes.
Chapter 5: Conditionals 81
1 if x < y:
2 STATEMENTS_A
3 else:
4 if x > y:
5 STATEMENTS_B
6 else:
7 STATEMENTS_C
The outer conditional contains two branches. The second branch contains another if statement,
which has two branches of its own. Those two branches could contain conditional statements as
well.
Chapter 5: Conditionals 82
Although the indentation of the statements makes the structure apparent, nested conditionals very
quickly become difficult to read. In general, it is a good idea to avoid them when we can.
Logical operators often provide a way to simplify nested conditional statements. For example, we
can rewrite the following code using a single conditional:
The print function is called only if we make it past both the conditionals, so instead of the above
which uses two if statements each with a simple condition, we could make a more complex
condition using the and operator. Now we only need a single if statement:
1 def print_square_root(x):
2 if x <= 0:
3 print("Positive numbers only, please.")
4 return
5
6 result = x**0.5
7 print("The square root of", x, "is", result)
The function print_square_root has a parameter named x. The first thing it does is check whether
x is less than or equal to 0, in which case it displays an error message and then uses return to exit
the function. The flow of execution immediately returns to the caller, and the remaining lines of the
function are not executed.
Understanding these logical opposites allows us to sometimes get rid of not operators. not operators
are often quite difficult to read in computer code, and our intentions will usually be clearer if we
can eliminate them.
For example, if we wrote this Python:
it would probably be clearer to use the simplification laws, and to write instead:
Two powerful simplification laws (called de Morgan’s laws) that are often helpful when dealing with
complicated Boolean expressions are:
For example, suppose we can slay the dragon only if our magic lightsabre sword is charged to 90%
or higher, and we have 100 or more energy units in our protective shield. We find this fragment of
Python code in the game:
de Morgan’s laws together with the logical opposites would let us rework the condition in a (perhaps)
easier to understand way like this:
Chapter 5: Conditionals 84
We could also get rid of the not by swapping around the then and else parts of the conditional. So
here is a third version, also equivalent:
This version is probably the best of the three, because it very closely matches the initial English
statement. Clarity of our code (for other humans), and making it easy to see that the code does what
was expected should always be a high priority.
As our programming skills develop we’ll find we have more than one way to solve any problem. So
good programs are designed. We make choices that favour clarity, simplicity, and elegance. The job
title software architect says a lot about what we do — we are architects who engineer our products
to balance beauty, functionality, simplicity and clarity in our creations.
Tip
Once our program works, we should play around a bit trying to polish it up. Write good comments.
Think about whether the code would be clearer with different variable names. Could we have done
it more elegantly? Should we rather use a function? Can we simplify the conditionals?
We think of our code as our creation, our work of art! We make it great.
1 >>> int("32")
2 32
3 >>> int("Hello")
4 ValueError: invalid literal for int() with base 10: 'Hello'
int can also convert floating-point values to integers, but remember that it truncates the fractional
part:
Chapter 5: Conditionals 85
1 >>> int(-2.3)
2 -2
3 >>> int(3.99999)
4 3
5 >>> int("42")
6 42
7 >>> int(1.0)
8 1
1 >>> float(32)
2 32.0
3 >>> float("3.14159")
4 3.14159
5 >>> float(1)
6 1.0
It may seem odd that Python distinguishes the integer value 1 from the floating-point value 1.0.
They may represent the same number, but they belong to different types. The reason is that they are
represented differently inside the computer.
The str function converts any argument given to it to type string:
1 >>> str(32)
2 '32'
3 >>> str(3.14149)
4 '3.14149'
5 >>> str(True)
6 'True'
7 >>> str(true)
8 Traceback (most recent call last):
9 File "<interactive input>", line 1, in <module>
10 NameError: name 'true' is not defined
str will work with any value and convert it into a string. As mentioned earlier, True is a Boolean
value; true is just an ordinary variable name, and is not defined here, so we get an error.
• We can get a turtle to display text on the canvas at the turtle’s current position. The method to
do that is alex.write("Hello").
• We can fill a shape (circle, semicircle, triangle, etc.) with a color. It is a two-step process. First
we call the method alex.begin_fill(), then we draw the shape, then we call alex.end_fill().
• We’ve previously set the color of our turtle — we can now also set its fill color, which need not
be the same as the turtle and the pen color. We use alex.color("blue","red") to set the turtle
to draw in blue, and fill in red.
Ok, so can we get tess to draw a bar chart? Let us start with some data to be charted,
Corresponding to each data measurement, we’ll draw a simple rectangle of that height, with a fixed
width.
Ok, not fantastically impressive, but it is a nice start! The important thing here was the mental
chunking, or how we broke the problem into smaller pieces. Our chunk is to draw one bar, and we
wrote a function to do that. Then, for the whole chart, we repeatedly called our function.
Next, at the top of each bar, we’ll print the value of the data. We’ll do this in the body of draw_bar,
by adding t.write(' ' + str(height)) as the new third line of the body. We’ve put a little space
in front of the number, and turned the number into a string. Without this extra space we tend to
cramp our text awkwardly against the bar to the left. The result looks a lot better now:
And now we’ll add two lines to fill each bar. Our final program now looks like this:
1 import turtle
2
3 def draw_bar(t, height):
4 """ Get turtle t to draw one bar, of height. """
5 t.begin_fill() # Added this line
6 t.left(90)
7 t.forward(height)
8 t.write(" "+ str(height))
9 t.right(90)
10 t.forward(40)
11 t.right(90)
12 t.forward(height)
13 t.left(90)
14 t.end_fill() # Added this line
15 t.forward(10)
16
17 wn = turtle.Screen() # Set up the window and its attributes
18 wn.bgcolor("lightgreen")
19
20 tess = turtle.Turtle() # Create tess and set some attributes
21 tess.color("blue", "red")
22 tess.pensize(3)
23
24 xs = [48,117,200,240,160,260,220]
25
26 for a in xs:
27 draw_bar(tess, a)
28
29 wn.mainloop()
Mmm. Perhaps the bars should not be joined to each other at the bottom. We’ll need to pick up the
pen while making the gap between the bars. We’ll leave that (and a few more tweaks) as exercises
for you!
5.13. Glossary
block
A group of consecutive statements with the same indentation.
body
The block of statements in a compound statement that follows the header.
Boolean algebra
Some rules for rearranging and reasoning about Boolean expressions.
Boolean expression
An expression that is either true or false.
Boolean value
There are exactly two Boolean values: True and False. Boolean values result when a Boolean
expression is evaluated by the Python interpreter. They have type bool.
branch
One of the possible paths of the flow of execution determined by conditional execution.
Chapter 5: Conditionals 90
chained conditional
A conditional branch with more than two possible flows of execution. In Python chained condition-
als are written with if … elif … else statements.
comparison operator
One of the six operators that compares two values: ==, !=, >, <, >=, and <=.
condition
The Boolean expression in a conditional statement that determines which branch is executed.
conditional statement
A statement that controls the flow of execution depending on some condition. In Python the
keywords if, elif, and else are used for conditional statements.
logical operator
One of the operators that combines Boolean expressions: and, or, and not.
nesting
One program structure within another, such as a conditional statement inside a branch of another
conditional statement.
prompt
A visual cue that tells the user that the system is ready to accept input data.
truth table
A concise table of Boolean values that can describe the semantics of an operator.
type conversion
An explicit function call that takes a value of one type and computes a corresponding value of
another type.
wrapping code in a function
The process of adding a function header and parameters to a sequence of program statements is often
referred to as “wrapping the code in a function”. This process is very useful whenever the program
statements in question are going to be used multiple times. It is even more useful when it allows
the programmer to express their mental chunking, and how they’ve broken a complex problem into
pieces.
5.14. Exercises
1. Assume the days of the week are numbered 0,1,2,3,4,5,6 from Sunday to Saturday. Write a
function which is given the day number, and it returns the day name (a string).
Chapter 5: Conditionals 91
2. You go on a wonderful holiday (perhaps to jail, if you don’t like happy exercises) leaving on
day number 3 (a Wednesday). You return home after 137 sleeps. Write a general version of the
program which asks for the starting day number, and the length of your stay, and it will tell
you the name of day of the week you will return on.
3. Give the logical opposites of these conditions
1 a > b
2 a >= b
3 a >= 18 and day == 3
4 a >= 18 and day != 3
1 3 == 3
2 3 != 3
3 3 >= 4
4 not (3 < 4)
Mark Grade
>= 75 First
[70-75) Upper Second
[60-70) Second
[50-60) Third
[45-50) F1 Supp
[40-45) F2
< 40 F3
The square and round brackets denote closed and open intervals. A closed interval includes the
number, and open interval excludes it. So 39.99999 gets grade F3, but 40 gets grade F2. Assume
Chapter 5: Conditionals 92
1 xs = [83, 75, 74.9, 70, 69.9, 65, 60, 59.9, 55, 50,
2 49.9, 45, 44.9, 40, 39.9, 2, 0]
Test your function by printing the mark and the grade for all the elements in this list.
7. Modify the turtle bar chart program so that the pen is up for the small gaps between each bar.
8. Modify the turtle bar chart program so that the bar for any value of 200 or more is filled with
red, values between [100 and 200) are filled with yellow, and bars representing values less than
100 are filled with green.
9. In the turtle bar chart program, what do you expect to happen if one or more of the data values
in the list is negative? Try it out. Change the program so that when it prints the text value for
the negative bars, it puts the text below the bottom of the bar.
10. Write a function find_hypot which, given the length of two sides of a right-angled triangle,
returns the length of the hypotenuse. (Hint: x ** 0.5 will return the square root.)
11. Write a function is_rightangled which, given the length of three sides of a triangle, will
determine whether the triangle is right-angled. Assume that the third argument to the function
is always the longest side. It will return True if the triangle is right-angled, or False otherwise.
Hint: Floating point arithmetic is not always exactly accurate, so it is not safe to test floating
point numbers for equality. If a good programmer wants to know whether x is equal or close
enough to y, they would probably code it up as:
12. Extend the above program so that the sides can be given to the function in any order.
13. If you’re intrigued by why floating point arithmetic is sometimes inaccurate, on a piece of
paper, divide 10 by 3 and write down the decimal result. You’ll find it does not terminate,
so you’ll need an infinitely long sheet of paper. The representation of numbers in computer
memory or on your calculator has similar problems: memory is finite, and some digits may
have to be discarded. So small inaccuracies creep in. Try this script:
1 import math
2 a = math.sqrt(2.0)
3 print(a, a*a)
4 print(a*a == 2.0)
Chapter 6: Fruitful functions
6.1. Return values
The built-in functions we have used, such as abs, pow, int, max, and range, have produced results.
Calling each of these functions generates a value, which we usually assign to a variable or use as
part of an expression.
1 biggest = max(3, 7, 2, 5)
2 x = abs(3 - 11) + 10
We also wrote our own function to return the final amount for a compound interest calculation.
In this chapter, we are going to write more functions that return values, which we will call fruitful
functions, for want of a better name. The first example is area, which returns the area of a circle
with the given radius:
1 def area(radius):
2 b = 3.14159 * radius**2
3 return b
We have seen the return statement before, but in a fruitful function the return statement includes a
return value. This statement means: evaluate the return expression, and then return it immediately
as the result (the fruit) of this function. The expression provided can be arbitrarily complicated, so
we could have written this function like this:
1 def area(radius):
2 return 3.14159 * radius * radius
On the other hand, temporary variables like b above often make debugging easier.
Sometimes it is useful to have multiple return statements, one in each branch of a conditional. We
have already seen the built-in abs, now we see how to write our own:
Chapter 6: Fruitful functions 94
1 def absolute_value(x):
2 if x < 0:
3 return -x
4 else:
5 return x
Another way to write the above function is to leave out the else and just follow the if condition
by the second return statement.
1 def absolute_value(x):
2 if x < 0:
3 return -x
4 return x
Think about this version and convince yourself it works the same as the first one.
Code that appears after a return statement, or any other place the flow of execution can never reach,
is called dead code, or unreachable code.
In a fruitful function, it is a good idea to ensure that every possible path through the program hits a
return statement. The following version of absolute_value fails to do this:
1 def bad_absolute_value(x):
2 if x < 0:
3 return -x
4 elif x > 0:
5 return x
This version is not correct because if x happens to be 0, neither condition is true, and the function
ends without hitting a return statement. In this case, the return value is a special value called None:
1 >>> print(bad_absolute_value(0))
2 None
All Python functions return None whenever they do not return another value.
It is also possible to use a return statement in the middle of a for loop, in which case control
immediately returns from the function. Let us assume that we want a function which looks through
a list of words. It should return the first 2-letter word. If there is not one, it should return the empty
string:
Chapter 6: Fruitful functions 95
1 def find_first_2_letter_word(xs):
2 for wd in xs:
3 if len(wd) == 2:
4 return wd
5 return ""
Single-step through this code and convince yourself that in the first test case that we’ve provided,
the function returns while processing the second element in the list: it does not have to traverse the
whole list.
Distance formula
The first step is to consider what a distance function should look like in Python. In other words,
what are the inputs (parameters) and what is the output (return value)?
In this case, the two points are the inputs, which we can represent using four parameters. The return
value is the distance, which is a floating-point value.
Already we can write an outline of the function that captures our thinking so far:
Obviously, this version of the function doesn’t compute distances; it always returns zero. But it
is syntactically correct, and it will run, which means that we can test it before we make it more
complicated.
To test the new function, we call it with sample values:
1 >>> distance(1, 2, 4, 6)
2 0.0
We chose these values so that the horizontal distance equals 3 and the vertical distance equals 4;
that way, the result is 5 (the hypotenuse of a 3-4-5 triangle). When testing a function, it is useful to
know the right answer.
At this point we have confirmed that the function is syntactically correct, and we can start adding
lines of code. After each incremental change, we test the function again. If an error occurs at any
point, we know where it must be — in the last line we added.
A logical first step in the computation is to find the differences x2- x1 and y2- y1. We will refer to
those values using temporary variables named dx and dy.
If we call the function with the arguments shown above, when the flow of execution gets to the
return statement, dx should be 3 and dy should be 4. We can check that this is the case in PyScripter
by putting the cursor on the return statement, and running the program to break execution when it
gets to the cursor (using the F4 key). Then we inspect the variables dx and dy by hovering the mouse
above them, to confirm that the function is getting the right parameters and performing the first
computation correctly. If not, there are only a few lines to check.
Next we compute the sum of squares of dx and dy:
Again, we could run the program at this stage and check the value of dsquared (which should be
25).
Finally, using the fractional exponent 0.5 to find the square root, we compute and return the result:
Chapter 6: Fruitful functions 97
If that works correctly, you are done. Otherwise, you might want to inspect the value of result
before the return statement.
When you start out, you might add only a line or two of code at a time. As you gain more experience,
you might find yourself writing and debugging bigger conceptual chunks. Either way, stepping
through your code one line at a time and verifying that each step matches your expectations can
save you a lot of debugging time. As you improve your programming skills you should find yourself
managing bigger and bigger chunks: this is very similar to the way we learned to read letters,
syllables, words, phrases, sentences, paragraphs, etc., or the way we learn to chunk music — from
individual notes to chords, bars, phrases, and so on.
The key aspects of the process are:
1. Start with a working skeleton program and make small incremental changes. At any point, if
there is an error, you will know exactly where it is.
2. Use temporary variables to refer to intermediate values so that you can easily inspect and check
them.
3. Once the program is working, relax, sit back, and play around with your options. (There is
interesting research that links “playfulness” to better understanding, better learning, more
enjoyment, and a more positive mindset about what you can achieve — so spend some time
fiddling around!) You might want to consolidate multiple statements into one bigger compound
expression, or rename the variables you’ve used, or see if you can make the function shorter.
A good guideline is to aim for making code as easy as possible for others to read.
Here is another version of the function. It makes use of a square root function that is in the math
module (we’ll learn about modules shortly). Which do you prefer? Which looks “closer” to the
Pythagorean formula we started out with?
1 import math
2
3 def distance(x1, y1, x2, y2):
4 return math.sqrt( (x2-x1)**2 + (y2-y1)**2 )
Chapter 6: Fruitful functions 98
1 >>> distance(1, 2, 4, 6)
2 5.0
• You must have a clear solution to the problem, and must know what should happen before
you can debug a program. Work on solving the problem on a piece of paper (perhaps using a
flowchart to record the steps you take) before you concern yourself with writing code. Writing
a program doesn’t solve the problem — it simply automates the manual steps you would take.
So first make sure you have a pen-and-paper manual solution that works. Programming then
is about making those manual steps happen automatically.
• Do not write chatterbox functions. A chatterbox is a fruitful function that, in addition to its
primary task, also asks the user for input, or prints output, when it would be more useful if it
simply shut up and did its work quietly.
For example, we’ve seen built-in functions like range, max and abs. None of these would be useful
building blocks for other programs if they prompted the user for input, or printed their results while
they performed their tasks.
So a good tip is to avoid calling print and input functions inside fruitful functions, unless the
primary purpose of your function is to perform input and output. The one exception to this rule
might be to temporarily sprinkle some calls to print into your code to help debug and understand
what is happening when the code runs, but these will then be removed once you get things working.
6.4. Composition
As you should expect by now, you can call one function from within another. This ability is called
composition.
As an example, we’ll write a function that takes two points, the center of the circle and a point on
the perimeter, and computes the area of the circle.
Assume that the center point is stored in the variables xc and yc, and the perimeter point is in xp
and yp. The first step is to find the radius of the circle, which is the distance between the two points.
Fortunately, we’ve just written a function, distance, that does just that, so now all we have to do is
use it:
Chapter 6: Fruitful functions 99
The second step is to find the area of a circle with that radius and return it. Again we will use one
of our earlier functions:
1 result = area(radius)
2 return result
We called this function area2 to distinguish it from the area function defined earlier.
The temporary variables radius and result are useful for development, debugging, and single-
stepping through the code to inspect what is happening, but once the program is working, we can
make it more concise by composing the function calls:
It is common to give Boolean functions names that sound like yes/no questions. is_divisible
returns either True or False to indicate whether the x is or is not divisible by y.
We can make the function more concise by taking advantage of the fact that the condition of the
if statement is itself a Boolean expression. We can return it directly, avoiding the if statement
altogether:
Chapter 6: Fruitful functions 100
1 >>> is_divisible(6, 4)
2 False
3 >>> is_divisible(6, 3)
4 True
1 if is_divisible(x, y):
2 ... # Do something ...
3 else:
4 ... # Do something else ...
1 if is_divisible(x, y) == True:
1 import sys
2
3 def test(did_pass):
4 """ Print the result of a test. """
5 linenum = sys._getframe(1).f_lineno # Get the caller's line number.
6 if did_pass:
7 msg = "Test at line {0} ok.".format(linenum)
8 else:
9 msg = "Test at line {0} FAILED.".format(linenum)
10 print(msg)
There is also some slightly tricky string formatting using the format method which we will gloss
over for the moment, and cover in detail in a future chapter. But with this function written, we can
proceed to construct our test suite:
1 def test_suite():
2 """ Run the suite of tests for code in this module (this file).
3 """
4 test(absolute_value(17) == 17)
5 test(absolute_value(-17) == 17)
6 test(absolute_value(0) == 0)
7 test(absolute_value(3.14) == 3.14)
8 test(absolute_value(-3.14) == 3.14)
9
10 test_suite() # Here is the call to run the tests
Here you’ll see that we’ve constructed five tests in our test suite. We could run this against the
first or second versions (the correct versions) of absolute_value, and we’d get output similar to the
following:
But let’s say you change the function to an incorrect version like this:
Chapter 6: Fruitful functions 103
Can you find at least two mistakes in this code? Our test suite can! We get:
6.8. Glossary
Boolean function
A function that returns a Boolean value. The only possible values of the bool type are False and
True.
chatterbox function
A function which interacts with the user (using input or print) when it should not. Silent functions
that just convert their input arguments into their output results are usually the most useful ones.
composition (of functions)
Calling one function from within the body of another, or using the return value of one function as
an argument to the call of another.
dead code
Part of a program that can never be executed, often because it appears after a return statement.
fruitful function
A function that yields a return value instead of None.
incremental development
Chapter 6: Fruitful functions 104
A program development plan intended to simplify debugging by adding and testing only a small
amount of code at a time.
None
A special Python value. One use in Python is that it is returned by functions that do not execute a
return statement with a return argument.
return value
The value provided as the result of a function call.
scaffolding
Code that is used during program development to assist with development and debugging. The unit
test code that we added in this chapter are examples of scaffolding.
temporary variable
A variable used to store an intermediate value in a complex calculation.
test suite
A collection of tests for some code you have written.
unit testing
An automatic procedure used to validate that individual units of code are working properly. Having
a test suite is extremely useful when somebody modifies or extends the code: it provides a safety net
against going backwards by putting new bugs into previously working code. The term regression
testing is often used to capture this idea that we don’t want to go backwards!
6.9. Exercises
All of the exercises below should be added to a single file. In that file, you should also add the test
and test_suite scaffolding functions shown above, and then, as you work through the exercises,
add the new tests to your test suite. (If you open the online version of the textbook, you can easily
copy and paste the tests and the fragments of code into your Python editor.)
After completing each exercise, confirm that all the tests pass.
1. The four compass points can be abbreviated by single-letter strings as “N”, “E”, “S”, and “W”.
Write a function turn_clockwise that takes one of these four compass points as its parameter,
and returns the next compass point in the clockwise direction. Here are some tests that should
pass:
1 test(turn_clockwise("N") == "E")
2 test(turn_clockwise("W") == "N")
You might ask “What if the argument to the function is some other value?” For all other cases,
the function should return the value None:
Chapter 6: Fruitful functions 105
1 test(turn_clockwise(42) == None)
2 test(turn_clockwise("rubbish") == None)
2. Write a function day_name that converts an integer number 0 to 6 into the name of a day.
Assume day 0 is “Sunday”. Once again, return None if the arguments to the function are not
valid. Here are some tests that should pass:
1 test(day_name(3) == "Wednesday")
2 test(day_name(6) == "Saturday")
3 test(day_name(42) == None)
3. Write the inverse function day_num which is given a day name, and returns its number:
1 test(day_num("Friday") == 5)
2 test(day_num("Sunday") == 0)
3 test(day_num(day_name(3)) == 3)
4 test(day_name(day_num("Thursday")) == "Thursday")
Once again, if this function is given an invalid argument, it should return None:
1 test(day_num("Halloween") == None)
4. Write a function that helps answer questions like ‘“Today is Wednesday. I leave on holiday
in 19 days time. What day will that be?”’ So the function must take a day name and a delta
argument — the number of days to add — and should return the resulting day name:
1 test(day_add("Monday", 4) == "Friday")
2 test(day_add("Tuesday", 0) == "Tuesday")
3 test(day_add("Tuesday", 14) == "Tuesday")
4 test(day_add("Sunday", 100) == "Tuesday")
Hint: use the first two functions written above to help you write this one.
5. Can your day_add function already work with negative deltas? For example, -1 would be
yesterday, or -7 would be a week ago:
If your function already works, explain why. If it does not work, make it work.
Hint: Play with some cases of using the modulus function % (introduced at the beginning of the
previous chapter). Specifically, explore what happens to x % 7 when x is negative.
6. Write a function days_in_month which takes the name of a month, and returns the number of
days in the month. Ignore leap years:
Chapter 6: Fruitful functions 106
1 test(days_in_month("February") == 28)
2 test(days_in_month("December") == 31)
1 test(3 % 4 == 0)
2 test(3 % 4 == 3)
3 test(3 / 4 == 0)
4 test(3 // 4 == 0)
5 test(3+4 * 2 == 14)
6 test(4-2+2 == 0)
7 test(len("hello, world!") == 13)
1 test(compare(5, 4) == 1)
2 test(compare(7, 7) == 0)
3 test(compare(2, 3) == -1)
4 test(compare(42, 1) == 1)
12. Write a function called hypotenuse that returns the length of the hypotenuse of a right triangle
given the lengths of the two legs as parameters:
1 test(hypotenuse(3, 4) == 5.0)
2 test(hypotenuse(12, 5) == 13.0)
3 test(hypotenuse(24, 7) == 25.0)
4 test(hypotenuse(9, 12) == 15.0)
13. Write a function slope(x1, y1, x2, y2) that returns the slope of the line through the points
(x1, y1) and (x2, y2). Be sure your implementation of slope can pass the following tests:
1 test(slope(5, 3, 4, 2) == 1.0)
2 test(slope(1, 2, 3, 2) == 0.0)
3 test(slope(1, 2, 3, 3) == 0.5)
4 test(slope(2, 4, 1, 2) == 2.0)
Then use a call to slope in a new function named intercept(x1, y1, x2, y2) that returns
the y-intercept of the line through the points (x1, y1) and (x2, y2)
14. Write a function called is_even(n) that takes an integer as an argument and returns True if
the argument is an even number and False if it is odd.
Add your own tests to the test suite.
15. Now write the function is_odd(n) that returns True when n is odd and False otherwise. Include
unit tests for this function too.
Finally, modify it so that it uses a call to is_even to determine if its argument is an odd integer,
and ensure that its test still pass.
16. Write a function is_factor(f, n) that passes these tests:
Chapter 6: Fruitful functions 108
1 test(is_factor(3, 12))
2 test(not is_factor(5, 12))
3 test(is_factor(7, 14))
4 test(not is_factor(7, 15))
5 test(is_factor(1, 15))
6 test(is_factor(15, 15))
7 test(not is_factor(25, 15))
An important role of unit tests is that they can also act as unambiguous “specifications” of
what is expected. These test cases answer the question “Do we treat 1 and 15 as factors of 15”?
17. Write is_multiple to satisfy these unit tests:
1 test(is_multiple(12, 3))
2 test(is_multiple(12, 4))
3 test(not is_multiple(12, 5))
4 test(is_multiple(12, 6))
5 test(not is_multiple(12, 7))
19. Now do the opposite: write the function c2f which converts Celsius to Fahrenheit:
1 test(c2f(0) == 32)
2 test(c2f(100) == 212)
3 test(c2f(-40) == -40)
4 test(c2f(12) == 54)
5 test(c2f(18) == 64)
6 test(c2f(-48) == -54)
Chapter 7: Iteration
Computers are often used to automate repetitive tasks. Repeating identical or similar tasks without
making errors is something that computers do well and people do poorly.
Repeated execution of a set of statements is called iteration. Because iteration is so common, Python
provides several language features to make it easier. We’ve already seen the for statement in chapter
3. This the the form of iteration you’ll likely be using most often. But in this chapter we’ve going
to look at the while statement — another way to have your program do iteration, useful in slightly
different circumstances.
Before we do that, let’s just review a few ideas…
7.1. Assignment
As we have mentioned previously, it is legal to make more than one assignment to the same variable.
A new assignment makes an existing variable refer to a new value (and stop referring to the old
value).
1 airtime_remaining = 15
2 print(airtime_remaining)
3 airtime_remaining = 7
4 print(airtime_remaining)
1 15
2 7
because the first time airtime_remaining is printed, its value is 15, and the second time, its value is
7.
In Python, an assignment statement can make two variables equal, but because further assignments
can change either of them, they don’t have to stay that way:
Chapter 7: Iteration 110
1 a = 5
2 b = a # After executing this line, a and b are now equal
3 a = 3 # After executing this line, a and b are no longer equal
The third line changes the value of a but does not change the value of b, so they are no longer
equal. (In some programming languages, a different symbol is used for assignment, such as <- or :=,
to avoid confusion. Some people also think that variable was an unfortunate word to choose, and
instead we should have called them assignables. Python chooses to follow common terminology and
token usage, also found in languages like C, C++, Java, and C#, so we use the tokens = for assignment,
== for equality, and we talk of variables.
1 n = 5
2 n = 3 * n + 1
Line 2 means get the current value of n, multiply it by three and add one, and assign the answer to
n, thus making n refer to the value. So after executing the two lines above, n will point/refer to the
integer 16.
If you try to get the value of a variable that has never been assigned to, you’ll get an error:
1 >>> w = x + 1
2 Traceback (most recent call last):
3 File "<interactive input>", line 1, in
4 NameError: name 'x' is not defined
Before you can update a variable, you have to initialize it to some starting value, usually with a
simple assignment:
1 runs_scored = 0
2 ...
3 runs_scored = runs_scored + 1
Running through all the items in a list is called traversing the list, or traversal.
Let us write a function now to sum up all the elements in a list of numbers. Do this by hand first, and
try to isolate exactly what steps you take. You’ll find you need to keep some “running total” of the
sum so far, either on a piece of paper, in your head, or in your calculator. Remembering things from
one step to the next is precisely why we have variables in a program: so we’ll need some variable
to remember the “running total”. It should be initialized with a value of zero, and then we need to
traverse the items in the list. For each item, we’ll want to update the running total by adding the
next number to it.
1 def mysum(xs):
2 """ Sum all the numbers in the list xs, and return the total. """
3 running_total = 0
4 for x in xs:
5 running_total = running_total + x
6 return running_total
7
8 # Add tests like these to your test suite ...
9 test(mysum([1, 2, 3, 4]) == 10)
10 test(mysum([1.25, 2.5, 1.75]) == 5.5)
11 test(mysum([1, -2, 3]) == 2)
12 test(mysum([ ]) == 0)
13 test(mysum(range(11)) == 55) # 11 is not included in the list.
1 def sum_to(n):
2 """ Return the sum of 1+2+3 ... n """
3 ss = 0
4 v = 1
5 while v <= n:
6 ss = ss + v
7 v = v + 1
8 return ss
9
10 # For your test suite
11 test(sum_to(4) == 10)
12 test(sum_to(1000) == 500500)
You can almost read the while statement as if it were English. It means, while v is less than or equal
to n, continue executing the body of the loop. Within the body, each time, increment v. When v
passes n, return your accumulated sum.
More formally, here is precise flow of execution for a while statement:
• Evaluate the condition at line 5, yielding a value which is either False or True.
• If the value is False, exit the while statement and continue execution at the next statement (line
8 in this case).
• If the value is True, execute each of the statements in the body (lines 6 and 7) and then go back
to the while statement at line 5.
The body consists of all of the statements indented below the while keyword.
Notice that if the loop condition is False the first time we get loop, the statements in the body of the
loop are never executed.
The body of the loop should change the value of one or more variables so that eventually the
condition becomes false and the loop terminates. Otherwise the loop will repeat forever, which is
called an infinite loop. An endless source of amusement for computer scientists is the observation
that the directions on shampoo, “lather, rinse, repeat”, are an infinite loop.
In the case here, we can prove that the loop terminates because we know that the value of n is finite,
and we can see that the value of v increments each time through the loop, so eventually it will have
to exceed n. In other cases, it is not so easy, even impossible in some cases, to tell if the loop will
ever terminate.
What you will notice here is that the while loop is more work for you — the programmer — than the
equivalent for loop. When using a while loop one has to manage the loop variable yourself: give it
an initial value, test for completion, and then make sure you change something in the body so that
the loop terminates. By comparison, here is an equivalent function that uses for instead:
Chapter 7: Iteration 113
1 def sum_to(n):
2 """ Return the sum of 1+2+3 ... n """
3 ss = 0
4 for v in range(n+1):
5 ss = ss + v
6 return ss
Notice the slightly tricky call to the range function — we had to add one onto n, because range
generates its list up to but excluding the value you give it. It would be easy to make a programming
mistake and overlook this, but because we’ve made the investment of writing some unit tests, our
test suite would have caught our error.
So why have two kinds of loop if for looks easier? This next example shows a case where we need
the extra power that we get from the while loop.
1 def seq3np1(n):
2 """ Print the 3n+1 sequence from n,
3 terminating when it reaches 1.
4 """
5 while n != 1:
6 print(n, end=", ")
7 if n % 2 == 0: # n is even
8 n = n // 2
9 else: # n is odd
10 n = n * 3 + 1
11 print(n, end=".\n")
Notice first that the print function on line 6 has an extra argument end=", ". This tells the print
function to follow the printed string with whatever the programmer chooses (in this case, a comma
followed by a space), instead of ending the line. So each time something is printed in the loop, it
is printed on the same output line, with the numbers separated by commas. The call to print(n,
end=".\n") at line 11 after the loop terminates will then print the final value of n followed by a
period and a newline character. (You’ll cover the \n (newline character) in the next chapter).
Chapter 7: Iteration 114
The condition for continuing with this loop is n != 1, so the loop will continue running until it
reaches its termination condition, (i.e. n == 1).
Each time through the loop, the program outputs the value of n and then checks whether it is even
or odd. If it is even, the value of n is divided by 2 using integer division. If it is odd, the value is
replaced by n * 3 + 1. Here are some examples:
1 >>> seq3np1(3)
2 3, 10, 5, 16, 8, 4, 2, 1.
3 >>> seq3np1(19)
4 19, 58, 29, 88, 44, 22, 11, 34, 17, 52, 26, 13,
5 40, 20, 10, 5, 16, 8, 4, 2, 1.
6 >>> seq3np1(21)
7 21, 64, 32, 16, 8, 4, 2, 1.
8 >>> seq3np1(16)
9 16, 8, 4, 2, 1.
10 >>>
Since n sometimes increases and sometimes decreases, there is no obvious proof that n will ever
reach 1, or that the program terminates. For some particular values of n, we can prove termination.
For example, if the starting value is a power of two, then the value of n will be even each time
through the loop until it reaches 1. The previous example ends with such a sequence, starting with
16.
See if you can find a small starting number that needs more than a hundred steps before it terminates.
Particular values aside, the interesting question was first posed by a German mathematician called
Lothar Collatz: the Collatz conjecture (also known as the 3n + 1 conjecture), is that this sequence
terminates for all positive values of n. So far, no one has been able to prove it or disprove it! (A
conjecture is a statement that might be true, but nobody knows for sure.)
Think carefully about what would be needed for a proof or disproof of the conjecture “All positive
integers will eventually converge to 1 using the Collatz rules”. With fast computers we have been
able to test every integer up to very large values, and so far, they have all eventually ended up at 1.
But who knows? Perhaps there is some as-yet untested number which does not reduce to 1.
You’ll notice that if you don’t stop when you reach 1, the sequence gets into its own cyclic loop: 1, 4,
2, 1, 4, 2, 1, 4 … So one possibility is that there might be other cycles that we just haven’t found yet.
Wikipedia has an informative article about the Collatz conjecture. The sequence also goes under
other names (Hailstone sequence, Wonderous numbers, etc.), and you’ll find out just how many
integers have already been tested by computer, and found to converge!
Choosing between for and while
Use a for loop if you know, before you start looping, the maximum number of times that you’ll
need to execute the body. For example, if you’re traversing a list of elements, you know that the
Chapter 7: Iteration 115
maximum number of loop iterations you can possibly need is “all the elements in the list”. Or if you
need to print the 12 times table, we know right away how many times the loop will need to run.
So any problem like “iterate this weather model for 1000 cycles”, or “search this list of words”, “find
all prime numbers up to 10000” suggest that a for loop is best.
By contrast, if you are required to repeat some computation until some condition is met, and you
cannot calculate in advance when (or if) this will happen, as we did in this 3n + 1 problem, you’ll
need a while loop.
We call the first case definite iteration — we know ahead of time some definite bounds for what
is needed. The latter case is called indefinite iteration — we’re not sure how many iterations we’ll
need — we cannot even establish an upper bound!
To keep track of all this as you hand trace a program, make a column heading on a piece of paper
for each variable created as the program runs and another one for output. Our trace so far would
look something like this:
Since 10 != 1 evaluates to True, the loop body is again executed, and 10 is printed. 10 % 2 == 0 is
True, so the if branch is executed and n becomes 5. By the end of the trace we have:
Chapter 7: Iteration 116
Tracing can be a bit tedious and error prone (that’s why we get computers to do this stuff in the first
place!), but it is an essential skill for a programmer to have. From this trace we can learn a lot about
the way our code works. We can observe that as soon as n becomes a power of 2, for example, the
program will require log2(n) executions of the loop body to complete. We can also see that the final
1 will not be printed as output within the body of the loop, which is why we put the special print
function at the end.
Tracing a program is, of course, related to single-stepping through your code and being able to
inspect the variables. Using the computer to single-step for you is less error prone and more
convenient. Also, as your programs get more complex, they might execute many millions of steps
before they get to the code that you’re really interested in, so manual tracing becomes impossible.
Being able to set a breakpoint where you need one is far more powerful. So we strongly encourage
you to invest time in learning using to use your programming environment to full effect.
There are also some great visualization tools becoming available to help you trace and understand
small fragments of Python code. The one we recommend is at http://pythontutor.com/
We’ve cautioned against chatterbox functions, but used them here. As we learn a bit more Python,
we’ll be able to show you how to generate a list of values to hold the sequence, rather than having
the function print them. Doing this would remove the need to have all these pesky print functions
in the middle of our logic, and will make the function more useful.
1 def num_digits(n):
2 count = 0
3 while n != 0:
4 count = count + 1
5 n = n // 10
6 return count
A call to print(num_digits(710)) will print 3. Trace the execution of this function call (perhaps
using the single step function in PyScripter, or the Python visualizer, or on some paper) to convince
yourself that it works.
This function demonstrates an important pattern of computation called a counter. The variable
count is initialized to 0 and then incremented each time the loop body is executed. When the loop
exits, count contains the result — the total number of times the loop body was executed, which is
the same as the number of digits.
If we wanted to only count digits that are either 0 or 5, adding a conditional before incrementing
the counter will do the trick:
1 def num_zero_and_five_digits(n):
2 count = 0
3 while n > 0:
4 digit = n % 10
5 if digit == 0 or digit == 5:
6 count = count + 1
7 n = n // 10
8 return count
1 >>> count = 0
2 >>> count += 1
3 >>> count
4 1
5 >>> count += 1
6 >>> count
7 2
1 >>> n = 2
2 >>> n += 5
3 >>> n
4 7
There are similar abbreviations for -=, *=, /=, //= and %=:
1 >>> n = 2
2 >>> n *= 5
3 >>> n
4 10
5 >>> n -= 4
6 >>> n
7 6
8 >>> n //= 2
9 >>> n
10 3
11 >>> n %= 2
12 >>> n
13 1
Notice the square brackets in the description of the arguments. These are examples of meta-
notation — notation that describes Python syntax, but is not part of it. The square brackets in
this documentation mean that the argument is optional — the programmer can omit it. So what
this first line of help tells us is that range must always have a stop argument, but it may have an
optional start argument (which must be followed by a comma if it is present), and it can also have
an optional step argument, preceded by a comma if it is present.
The examples from help show that range can have either 1, 2 or 3 arguments. The list can start at
any starting value, and go up or down in increments other than 1. The documentation here also says
that the arguments must be integers.
Other meta-notation you’ll frequently encounter is the use of bold and italics. The bold means that
these are tokens — keywords or symbols — typed into your Python code exactly as they are, whereas
the italic terms stand for “something of this type”. So the syntax description
for variable in list:
means you can substitute any legal variable and any legal list when you write your Python code.
This (simplified) description of the print function, shows another example of meta-notation in
which the ellipses (…) mean that you can have as many objects as you like (even zero), separated by
commas:
print( [object, …] )
Chapter 7: Iteration 120
Meta-notation gives us a concise and powerful way to describe the pattern of some syntax or feature.
7.10. Tables
One of the things loops are good for is generating tables. Before computers were readily available,
people had to calculate logarithms, sines and cosines, and other mathematical functions by hand.
To make that easier, mathematics books contained long tables listing the values of these functions.
Creating the tables was slow and boring, and they tended to be full of errors.
When computers appeared on the scene, one of the initial reactions was, “This is great! We can use the
computers to generate the tables, so there will be no errors.” That turned out to be true (mostly) but
shortsighted. Soon thereafter, computers and calculators were so pervasive that the tables became
obsolete.
Well, almost. For some operations, computers use tables of values to get an approximate answer and
then perform computations to improve the approximation. In some cases, there have been errors in
the underlying tables, most famously in the table the Intel Pentium processor chip used to perform
floating-point division.
Although a log table is not as useful as it once was, it still makes a good example of iteration. The
following program outputs a sequence of values in the left column and 2 raised to the power of that
value in the right column:
The string "\t" represents a tab character. The backslash character in "\t" indicates the beginning
of an escape sequence. Escape sequences are used to represent invisible characters like tabs and
newlines. The sequence \n represents a newline.
An escape sequence can appear anywhere in a string; in this example, the tab escape sequence is the
only thing in the string. How do you think you represent a backslash in a string?
As characters and strings are displayed on the screen, an invisible marker called the cursor keeps
track of where the next character will go. After a print function, the cursor normally goes to the
beginning of the next line.
The tab character shifts the cursor to the right until it reaches one of the tab stops. Tabs are useful
for making columns of text line up, as in the output of the previous program:
Chapter 7: Iteration 121
1 0 1
2 1 2
3 2 4
4 3 8
5 4 16
6 5 32
7 6 64
8 7 128
9 8 256
10 9 512
11 10 1024
12 11 2048
13 12 4096
Because of the tab characters between the columns, the position of the second column does not
depend on the number of digits in the first column.
Here we’ve used the range function, but made it start its sequence at 1. As the loop executes, the
value of i changes from 1 to 6. When all the elements of the range have been assigned to i, the loop
terminates. Each time through the loop, it displays the value of 2 * i, followed by three spaces.
Again, the extra end=" " argument in the print function suppresses the newline, and uses three
spaces instead. After the loop completes, the call to print at line 3 finishes the current line, and
starts a new line.
The output of the program is:
1 2 4 6 8 10 12
1 def print_multiples(n):
2 for i in range(1, 7):
3 print(n * i, end=" ")
4 print()
To encapsulate, all we had to do was add the first line, which declares the name of the function and
the parameter list. To generalize, all we had to do was replace the value 2 with the parameter n.
If we call this function with the argument 2, we get the same output as before. With the argument
3, the output is:
1 3 6 9 12 15 18
1 4 8 12 16 20 24
By now you can probably guess how to print a multiplication table — by calling print_multiples
repeatedly with different arguments. In fact, we can use another loop:
Notice how similar this loop is to the one inside print_multiples. All we did was replace the print
function with a function call.
The output of this program is a multiplication table:
Chapter 7: Iteration 123
1 1 2 3 4 5 6
2 2 4 6 8 10 12
3 3 6 9 12 15 18
4 4 8 12 16 20 24
5 5 10 15 20 25 30
6 6 12 18 24 30 36
1 def print_mult_table():
2 for i in range(1, 7):
3 print_multiples(i)
This process is a common development plan. We develop code by writing lines of code outside any
function, or typing them in to the interpreter. When we get the code working, we extract it and wrap
it up in a function.
This development plan is particularly useful if you don’t know how to divide the program into
functions when you start writing. This approach lets you design as you go along.
The answer is no, because the i in print_multiples and the i in print_mult_table are not the same
variable.
Variables created inside a function definition are local; you can’t access a local variable from outside
its home function. That means you are free to have multiple variables with the same name as long
as they are not in the same function.
Python examines all the statements in a function — if any of them assign a value to a variable, that
is the clue that Python uses to make the variable a local variable.
The stack diagram for this program shows that the two variables named i are not the same variable.
They can refer to different values, and changing one does not affect the other.
Chapter 7: Iteration 124
Stack 2 diagram
The value of i in print_mult_table goes from 1 to 6. In the diagram it happens to be 3. The next time
through the loop it will be 4. Each time through the loop, print_mult_table calls print_multiples
with the current value of i as an argument. That value gets assigned to the parameter n.
Inside print_multiples, the value of i goes from 1 to 6. In the diagram, it happens to be 2. Changing
this variable has no effect on the value of i in print_mult_table.
It is common and perfectly legal to have different local variables with the same name. In particular,
names like i and j are used frequently as loop variables. If you avoid using them in one function
just because you used them somewhere else, you will probably make the program harder to read.
The visualizer at http://pythontutor.com/ shows very clearly how the two variables i are distinct
variables, and how they have independent values.
This prints:
1 12
2 16
3 done
1 total = 0
2 while True:
3 response = input("Enter the next number. (Leave blank to end)")
4 if response == "":
5 break
6 total += int(response)
7 print("The total of the numbers you entered is ", total)
Convince yourself that this fits the middle-exit loop flowchart: line 3 does some useful work, lines
4 and 5 can exit the loop, and if they don’t line 6 does more useful work before the next iteration
starts.
The while bool-expr: uses the Boolean expression to determine whether to iterate again. True is a
trivial Boolean expression, so while True: means always do the loop body again. This is a language
idiom — a convention that most programmers will recognize immediately. Since the expression on
line 2 will never terminate the loop, (it is a dummy test) the programmer must arrange to break (or
return) out of the loop body elsewhere, in some other way (i.e. in lines 4 and 5 in this sample). A
clever compiler or interpreter will understand that line 2 is a fake test that must always succeed, so
it won’t even generate a test, and our flowchart never even put the diamond-shape dummy test box
at the top of the loop!
Similarly, by just moving the if condition: break to the end of the loop body we create a pattern
for a post-test loop. Post-test loops are used when you want to be sure that the loop body always
executes at least once (because the first test only happens at the end of the execution of the first
loop body). This is useful, for example, if we want to play an interactive game against the user —
we always want to play at least one game:
Chapter 7: Iteration 127
1 while True:
2 play_the_game_once()
3 response = input("Play again? (yes or no)")
4 if response != "yes":
5 break
6 print("Goodbye!")
Hint: Think about where you want the exit test to happen.
Once you’ve recognized that you need a loop to repeat something, think about its terminating
condition — when will I want to stop iterating? Then figure out whether you need to do the test
before starting the first (and every other) iteration, or at the end of the first (and every other) iteration,
or perhaps in the middle of each iteration. Interactive programs that require input from the user or
read from files often need to exit their loops in the middle or at the end of an iteration, when it
becomes clear that there is no more data to process, or the user doesn’t want to play our game
anymore.
7.17. An example
The following program implements a simple guessing game:
This program makes use of the mathematical law of trichotomy (given real numbers a and b, exactly
one of these three must be true: a > b, a < b, or a == b).
Chapter 7: Iteration 128
At line 18 there is a call to the input function, but we don’t do anything with the result, not even
assign it to a variable. This is legal in Python. Here it has the effect of popping up the input dialog
window and waiting for the user to respond before the program terminates. Programmers often use
the trick of doing some extra input at the end of a script, just to keep the window open.
Also notice the use of the msg variable, initially an empty string, on lines 6, 12 and 14. Each time
through the loop we extend the message being displayed: this allows us to display the program’s
feedback right at the same place as we’re asking for the next guess.
This prints:
1 12
2 16
3 24
4 30
5 done
Chapter 7: Iteration 129
1 def print_mult_table(high):
2 for i in range(1, high+1):
3 print_multiples(i)
We replaced the value 7 with the expression high+1. If we call print_mult_table with the argument
7, it displays:
1 1 2 3 4 5 6
2 2 4 6 8 10 12
3 3 6 9 12 15 18
4 4 8 12 16 20 24
5 5 10 15 20 25 30
6 6 12 18 24 30 36
7 7 14 21 28 35 42
This is fine, except that we probably want the table to be square — with the same number of rows and
columns. To do that, we add another parameter to print_multiples to specify how many columns
the table should have.
Just to be annoying, we call this parameter high, demonstrating that different functions can have
parameters with the same name (just like local variables). Here’s the whole program:
Notice that when we added a new parameter, we had to change the first line of the function (the
function heading), and we also had to change the place where the function is called in print_mult_-
table.
1 1 2 3 4 5 6 7
2 2 4 6 8 10 12 14
3 3 6 9 12 15 18 21
4 4 8 12 16 20 24 28
5 5 10 15 20 25 30 35
6 6 12 18 24 30 36 42
7 7 14 21 28 35 42 49
When you generalize a function appropriately, you often get a program with capabilities you didn’t
plan. For example, you might notice that, because ab = ba, all the entries in the table appear twice.
You could save ink by printing only half the table. To do that, you only have to change one line of
print_mult_table. Change
1 print_multiples(i, high+1)
to
1 print_multiples(i, i+1)
1 1
2 2 4
3 3 6 9
4 4 8 12 16
5 5 10 15 20 25
6 6 12 18 24 30 36
7 7 14 21 28 35 42 49
7.20. Functions
A few times now, we have mentioned all the things functions are good for. By now, you might be
wondering what exactly those things are. Here are some of them:
1. Capturing your mental chunking. Breaking your complex tasks into sub-tasks, and giving the
sub-tasks a meaningful name is a powerful mental technique. Look back at the example that
illustrated the post-test loop: we assumed that we had a function called play_the_game_once.
This chunking allowed us to put aside the details of the particular game — is it a card game,
or noughts and crosses, or a role playing game — and simply focus on one isolated part of our
program logic — letting the player choose whether they want to play again.
Chapter 7: Iteration 131
2. Dividing a long program into functions allows you to separate parts of the program, debug
them in isolation, and then compose them into a whole.
3. Functions facilitate the use of iteration.
4. Well-designed functions are often useful for many programs. Once you write and debug one,
you can reuse it.
Here is a quick sample of things we can do with structured data like this. First, print all the celebs:
1 print(celebs)
2 print(len(celebs))
3 [("Brad Pitt", 1963), ("Jack Nicholson", 1937), ("Justin Bieber", 1994)]
4 3
Notice that the celebs list has just 3 elements, each of them pairs.
Now we print the names of those celebrities born before 1980:
1 Brad Pitt
2 Jack Nicholson
This demonstrates something we have not seen yet in the for loop: instead of using a single loop
control variable, we’ve used a pair of variable names, (nm, yr), instead. The loop is executed three
times — once for each pair in the list, and on each iteration both the variables are assigned values
from the pair of data that is being handled.
Chapter 7: Iteration 132
1 students = [
2 ("John", ["CompSci", "Physics"]),
3 ("Vusi", ["Maths", "CompSci", "Stats"]),
4 ("Jess", ["CompSci", "Accounting", "Economics", "Management"]),
5 ("Sarah", ["InfSys", "Accounting", "Economics", "CommLaw"]),
6 ("Zuki", ["Sociology", "Economics", "Law", "Stats", "Music"])]
Here we’ve assigned a list of five elements to the variable students. Let’s print out each student
name, and the number of subjects they are enrolled for:
Now we’d like to ask how many students are taking CompSci. This needs a counter, and for each
student we need a second loop that tests each of the subjects in turn:
You should set up a list of your own data that interests you — perhaps a list of your CDs, each
containing a list of song titles on the CD, or a list of movie titles, each with a list of movie stars who
acted in the movie. You could then ask questions like “Which movies starred Angelina Jolie?”
Repeat this calculation a few times using your calculator. Can you see why each iteration brings your
estimate a little closer? One of the amazing properties of this particular algorithm is how quickly it
converges to an accurate answer — a great advantage for doing it manually.
By using a loop and repeating this formula until the better approximation gets close enough to the
previous one, we can write a function for computing the square root. (In fact, this is how your
calculator finds square roots — it may have a slightly different formula and method, but it is also
based on repeatedly improving its guesses.)
This is an example of an indefinite iteration problem: we cannot predict in advance how many times
we’ll want to improve our guess — we just want to keep getting closer and closer. Our stopping
condition for the loop will be when our old guess and our improved guess are “close enough” to
each other.
Ideally, we’d like the old and new guess to be exactly equal to each other when we stop. But exact
equality is a tricky notion in computer arithmetic when real numbers are involved. Because real
numbers are not represented absolutely accurately (after all, a number like pi or the square root
of two has an infinite number of decimal places because it is irrational), we need to formulate the
stopping test for the loop by asking “is a close enough to b”? This stopping condition can be coded
like this:
Notice that we take the absolute value of the difference between a and b!
This problem is also a good example of when a middle-exit loop is appropriate:
Chapter 7: Iteration 134
1 def sqrt(n):
2 approx = n/2.0 # Start with some or other guess at the answer
3 while True:
4 better = (approx + n/approx)/2.0
5 if abs(approx - better) < 0.001:
6 return better
7 approx = better
8
9 # Test cases
10 print(sqrt(25.0))
11 print(sqrt(49.0))
12 print(sqrt(81.0))
1 5.00000000002
2 7.0
3 9.0
See if you can improve the approximations by changing the stopping condition. Also, step through
the algorithm (perhaps by hand, using your calculator) to see how many iterations were needed
before it achieved this level of accuracy for sqrt(25).
7.24. Algorithms
Newton’s method is an example of an algorithm: it is a mechanical process for solving a category of
problems (in this case, computing square roots).
Some kinds of knowledge are not algorithmic. For example, learning dates from history or your
multiplication tables involves memorization of specific solutions.
But the techniques you learned for addition with carrying, subtraction with borrowing, and long
division are all algorithms. Or if you are an avid Sudoku puzzle solver, you might have some specific
set of steps that you always follow.
One of the characteristics of algorithms is that they do not require any intelligence to carry out. They
are mechanical processes in which each step follows from the last according to a simple set of rules.
And they’re designed to solve a general class or category of problems, not just a single problem.
Understanding that hard problems can be solved by step-by-step algorithmic processes (and having
technology to execute these algorithms for us) is one of the major breakthroughs that has had
enormous benefits. So while the execution of the algorithm may be boring and may require no
intelligence, algorithmic or computational thinking — i.e. using algorithms and automation as the
basis for approaching problems — is rapidly transforming our society. Some claim that this shift
Chapter 7: Iteration 135
towards algorithmic thinking and processes is going to have even more impact on our society
than the invention of the printing press. And the process of designing algorithms is interesting,
intellectually challenging, and a central part of what we call programming.
Some of the things that people do naturally, without difficulty or conscious thought, are the hardest
to express algorithmically. Understanding natural language is a good example. We all do it, but so far
no one has been able to explain how we do it, at least not in the form of a step-by-step mechanical
algorithm.
7.25. Glossary
algorithm
A step-by-step process for solving a category of problems.
body
The statements inside a loop.
breakpoint
A place in your program code where program execution will pause (or break), allowing you to inspect
the state of the program’s variables, or single-step through individual statements, executing them
one at a time.
bump
Programmer slang. Synonym for increment.
continue statement
A statement that causes the remainder of the current iteration of a loop to be skipped. The flow
of execution goes back to the top of the loop, evaluates the condition, and if this is true the next
iteration of the loop will begin.
counter
A variable used to count something, usually initialized to zero and incremented in the body of a
loop.
cursor
An invisible marker that keeps track of where the next character will be printed.
decrement
Decrease by 1.
definite iteration
A loop where we have an upper bound on the number of times the body will be executed. Definite
iteration is usually best coded as a for loop.
Chapter 7: Iteration 136
development plan
A process for developing a program. In this chapter, we demonstrated a style of development based
on developing code to do simple, specific things and then encapsulating and generalizing.
encapsulate
To divide a large complex program into components (like functions) and isolate the components
from each other (by using local variables, for example).
escape sequence
An escape character,\, followed by one or more printable characters used to designate a non printable
character.
generalize
To replace something unnecessarily specific (like a constant value) with something appropriately
general (like a variable or parameter). Generalization makes code more versatile, more likely to be
reused, and sometimes even easier to write.
increment
Both as a noun and as a verb, increment means to increase by 1.
infinite loop
A loop in which the terminating condition is never satisfied.
indefinite iteration
A loop where we just need to keep going until some condition is met. A while statement is used for
this case.
initialization (of a variable)
To initialize a variable is to give it an initial value. Since in Python, variables don’t exist until they
are assigned values, they are initialized when they are created. In other programming languages this
is not the case, and variables can be created without being initialized, in which case they have either
default or garbage values.
iteration
Repeated execution of a set of programming statements.
loop
The construct that allows allows us to repeatedly execute a statement or a group of statements until
a terminating condition is satisfied.
loop variable
A variable used as part of the terminating condition of a loop.
meta-notation
Chapter 7: Iteration 137
Extra symbols or notation that helps describe other notation. Here we introduced square brackets,
ellipses, italics, and bold as meta-notation to help describe optional, repeatable, substitutable and
fixed parts of the Python syntax.
middle-test loop
A loop that executes some of the body, then tests for the exit condition, and then may execute some
more of the body. We don’t have a special Python construct for this case, but can use while and
break together.
nested loop
A loop inside the body of another loop.
newline
A special character that causes the cursor to move to the beginning of the next line.
post-test loop
A loop that executes the body, then tests for the exit condition. We don’t have a special Python
construct for this, but can use while and break together.
pre-test loop
A loop that tests before deciding whether the execute its body. for and while are both pre-test loops.
single-step
A mode of interpreter execution where you are able to execute your program one step at a time,
and inspect the consequences of that step. Useful for debugging and building your internal mental
model of what is going on.
tab
A special character that causes the cursor to move to the next tab stop on the current line.
trichotomy
Given any real numbers a and b, exactly one of the following relations holds: a < b, a > b, or a ==
b. Thus when you can establish that two of the relations are false, you can assume the remaining
one is true.
trace
To follow the flow of execution of a program by hand, recording the change of state of the variables
and any output produced.
7.26. Exercises
This chapter showed us how to sum a list of items, and how to count items. The counting example
also had an if statement that let us only count some selected items. In the previous chapter we also
Chapter 7: Iteration 138
showed a function find_first_2_letter_word that allowed us an “early exit” from inside a loop by
using return when some condition occurred. We now also have break to exit a loop but not the
enclosing function, and continue to abandon the current iteration of the loop without ending the
loop.
Composition of list traversal, summing, counting, testing conditions and early exit is a rich collection
of building blocks that can be combined in powerful ways to create many functions that are all
slightly different.
The first six questions are typical functions you should be able to write using only these building
blocks.
1 1 1
2 2 3
3 3 6
4 4 10
5 5 15
(hint: use a web search to find out what a triangular number is.)
10. Write a function, is_prime, which takes a single integer argument and returns True when the
argument is a prime number and False otherwise. Add tests for cases like this:
1 test(is_prime(11))
2 test(not is_prime(35))
3 test(is_prime(19911121))
The last case could represent your birth date. Were you born on a prime day? In a class of 100
students, how many do you think would have prime birth dates?
Chapter 7: Iteration 139
11. Revisit the drunk pirate problem from the exercises in chapter 3. This time, the drunk pirate
makes a turn, and then takes some steps forward, and repeats this. Our social science student
now records pairs of data: the angle of each turn, and the number of steps taken after the turn.
Her experimental data is [(160, 20), (-43, 10), (270, 8), (-43, 12)]. Use a turtle to draw the path
taken by our drunk friend.
12. Many interesting shapes can be drawn by the turtle by giving a list of pairs like we did above,
where the first item of the pair is the angle to turn, and the second item is the distance to move
forward. Set up a list of pairs so that the turtle draws a house with a cross through the centre,
as show here. This should be done without going over any of the lines / edges more than once,
and without lifting your pen.
13. Not all shapes like the one above can be drawn without lifting your pen, or going over an edge
more than once. Which of these can be drawn?
14. What will num_digits(0) return? Modify it to return 1 for this case. Why does a call to num_-
digits(-24) result in an infinite loop? (hint: -1//10 evaluates to -1) Modify num_digits so that
it works correctly with any integer value. Add these tests:
1 test(num_digits(0) == 1)
2 test(num_digits(-12345) == 5)
15. Write a function num_even_digits(n) that counts the number of even digits in n. These tests
should pass:
Chapter 7: Iteration 140
1 test(num_even_digits(123456) == 3)
2 test(num_even_digits(2468) == 4)
3 test(num_even_digits(1357) == 0)
4 test(num_even_digits(0) == 1)
16. Write a function sum_of_squares(xs) that computes the sum of the squares of the numbers in
the list xs. For example, sum_of_squares([2, 3, 4]) should return 4+9+16 which is 29:
17. You and your friend are in a team to write a two-player game, human against computer, such
as Tic-Tac-Toe / Noughts and Crosses. Your friend will write the logic to play one round of
the game, while you will write the logic to allow many rounds of play, keep score, decide who
plays, first, etc. The two of you negotiate on how the two parts of the program will fit together,
and you come up with this simple scaffolding (which your friend will improve later):
a. Write the main program which repeatedly calls this function to play the game, and after
each round it announces the outcome as “I win!”, “You win!”, or “Game drawn!”. It then
asks the player “Do you want to play again?” and either plays again, or says “Goodbye”,
and terminates.
b. Keep score of how many wins each player has had, and how many draws there have been.
After each round of play, also announce the scores.
c. Add logic so that the players take turns to play first.
d. Compute the percentage of wins for the human, out of all games played. Also announce
this at the end of each round.
Chapter 7: Iteration 141
upper is a method that can be invoked on any string object to create a new string, in which all the
characters are in uppercase. (The original string ss remains unchanged.)
There are also methods such as lower, capitalize, and swapcase that do other interesting stuff.
To learn what methods are available, you can consult the Help documentation, look for string
methods, and read the documentation. Or, if you’re a bit lazier, simply type the following into a
PyScripter script:
When you type the period to select one of the methods of ss, PyScripter will pop up a selection
window showing all the methods (there are around 70 of them — thank goodness we’ll only use a
few of those!) that could be used on your string.
Chapter 8: Strings 143
When you type the name of the method, some further help about its parameter and return type,
and its docstring, will be displayed. This is a good example of a tool — PyScripter — using the
meta-information — the docstrings — provided by the module programmers.
Chapter 8: Strings 144
The expression fruit[1] selects character number 1 from fruit, and creates a new string containing
just this one character. The variable m refers to the result. When we display m, we could get a surprise:
1 a
Computer scientists always start counting from zero! The letter at subscript position zero of "banana"
is b. So at position [1] we have the letter a.
If we want to access the zero-eth letter of a string, we just place 0, or any expression that evaluates
to 0, inbetween the brackets:
1 >>> m = fruit[0]
2 >>> print(m)
3 b
The expression in brackets is called an index. An index specifies a member of an ordered collection,
in this case the collection of characters in the string. The index indicates which one you want, hence
the name. It can be any integer expression.
We can use enumerate to visualize the indices:
Do not worry about enumerate at this point, we will see more of it in the chapter on lists.
Note that indexing returns a string — Python has no special type for a single character. It is just a
string of length 1.
We’ve also seen lists previously. The same indexing notation works to extract elements from a list:
Chapter 8: Strings 145
1 >>> prime_nums = [2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31]
2 >>> prime_nums[4]
3 11
4 >>> friends = ["Joe", "Zoe", "Brad", "Angelina", "Zuki", "Thandi", "Paris"]
5 >>> friends[3]
6 'Angelina'
8.4. Length
The len function, when applied to a string, returns the number of characters in a string:
To get the last letter of a string, you might be tempted to try something like this:
That won’t work. It causes the runtime error IndexError: string index out of range. The reason
is that there is no character at index position 6 in "banana". Because we start counting at zero, the
six indexes are numbered 0 to 5. To get the last character, we have to subtract 1 from the length of
fruit:
Alternatively, we can use negative indices, which count backward from the end of the string. The
expression fruit[-1] yields the last letter, fruit[-2] yields the second to last, and so on.
As you might have guessed, indexing with a negative index also works like this for lists.
We won’t use negative indexes in the rest of these notes — not many computer languages use this
idiom, and you’ll probably be better off avoiding it. But there is plenty of Python code out on the
Internet that will use this trick, so it is best to know that it exists.
Each time through the loop, the next character in the string is assigned to the variable c. The loop
continues until no characters are left. Here we can see the expressive power the for loop gives us
compared to the while loop when traversing a string.
The following example shows how to use concatenation and a for loop to generate an abecedarian
series. Abecedarian refers to a series or list in which the elements appear in alphabetical order. For
example, in Robert McCloskey’s book Make Way for Ducklings, the names of the ducklings are Jack,
Kack, Lack, Mack, Nack, Ouack, Pack, and Quack. This loop outputs these names in order:
The output of this program is:
1 Jack
2 Kack
3 Lack
4 Mack
5 Nack
6 Oack
7 Pack
8 Qack
Of course, that’s not quite right because Ouack and Quack are misspelled. You’ll fix this as an exercise
below.
8.6. Slices
A substring of a string is obtained by taking a slice. Similarly, we can slice a list to refer to some
sublist of the items in the list:
The operator [n:m] returns the part of the string from the n’th character to the m’th character,
including the first but excluding the last. This behavior makes sense if you imagine the indices
pointing between the characters, as in the following diagram:
Chapter 8: Strings 147
If you imagine this as a piece of paper, the slice operator [n:m] copies out the part of the paper
between the n and m positions. Provided m and n are both within the bounds of the string, your result
will be of length (m-n).
Three tricks are added to this: if you omit the first index (before the colon), the slice starts at the
beginning of the string (or list). If you omit the second index, the slice extends to the end of the
string (or list). Similarly, if you provide value for n that is bigger than the length of the string (or
list), the slice will take all the values up to the end. (It won’t give an “out of range” error like the
normal indexing operation does.) Thus:
A common way to address this problem is to convert strings to a standard format, such as all
lowercase, before performing the comparison. A more difficult problem is making the program
realize that zebras are not fruit.
Strings are immutable, which means you can’t change an existing string. The best you can do is
create a new string that is a variation on the original:
The solution here is to concatenate a new first letter onto a slice of greeting. This operation has no
effect on the original string.
Note that a string is a substring of itself, and the empty string is a substring of any other string. (Also
note that computer scientists like to think about these edge cases quite carefully!)
Chapter 8: Strings 149
Combining the in operator with string concatenation using +, we can write a function that removes
all the vowels from a string:
1 def remove_vowels(s):
2 vowels = "aeiouAEIOU"
3 s_sans_vowels = ""
4 for x in s:
5 if x not in vowels:
6 s_sans_vowels += x
7 return s_sans_vowels
8
9 test(remove_vowels("compsci") == "cmpsc")
10 test(remove_vowels("aAbEefIijOopUus") == "bfjps")
10 ix += 1
11 return -1
12
13 test(find("Compsci", "p") == 3)
14 test(find("Compsci", "C") == 0)
15 test(find("Compsci", "i") == 6)
16 test(find("Compsci", "x") == -1)
In a sense, find is the opposite of the indexing operator. Instead of taking an index and extracting
the corresponding character, it takes a character and finds the index where that character appears.
If the character is not found, the function returns -1.
This is another example where we see a return statement inside a loop. If strng[ix] == ch, the
function returns immediately, breaking out of the loop prematurely.
If the character doesn’t appear in the string, then the program exits the loop normally and returns
-1.
1 def count_a(text):
2 count = 0
3 for c in text:
4 if c == "a":
5 count += 1
6 return(count)
7
8 test(count_a("banana") == 3)
The call find2("banana", "a", 2) now returns 3, the index of the first occurrence of “a” in “banana”
starting the search at index 2. What does find2("banana", "n", 3) return? If you said, 4, there is a
good chance you understand how find2 works.
Better still, we can combine find and find2 using an optional parameter:
When a function has an optional parameter, the caller may provide a matching argument. If the third
argument is provided to find, it gets assigned to start. But if the caller leaves the argument out,
then start is given a default value indicated by the assignment start=0 in the function definition.
So the call find("banana", "a", 2) to this version of find behaves just like find2, while in the call
find("banana", "a"), start will be set to the default value of 0.
Adding another optional parameter to find makes it search from a starting position, up to but not
including the end position:
The optional value for end is interesting: we give it a default value None if the caller does not supply
any argument. In the body of the function we test what end is, and if the caller did not supply any
argument, we reassign end to be the length of the string. If the caller has supplied an argument for
end, however, the caller’s value will be used in the loop.
The semantics of start and end in this function are precisely the same as they are in the range
function.
Here are some test cases that should pass:
1 >>> "banana".find("nan")
2
3 >>> "banana".find("na", 3)
4 4
Usually we’d prefer to use the methods that Python provides rather than reinvent our own
equivalents. But many of the built-in functions and methods make good teaching exercises, and
the underlying techniques you learn are your building blocks to becoming a proficient programmer.
1 punctuation = "!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~"
2
3 def remove_punctuation(s):
4 s_sans_punct = ""
5 for letter in s:
6 if letter not in punctuation:
7 s_sans_punct += letter
8 return s_sans_punct
Setting up that first assignment is messy and error-prone. Fortunately, the Python string module
already does it for us. So we will make a slight improvement to this program — we’ll import the
string module and use its definition:
1 import string
2
3 def remove_punctuation(s):
4 s_without_punct = ""
5 for letter in s:
6 if letter not in string.punctuation:
7 s_without_punct += letter
8 return s_without_punct
9
10 test(remove_punctuation('"Well, I never did!", said Alice.') ==
11 "Well I never did said Alice")
12 test(remove_punctuation("Are you very, very, sure?") ==
13 "Are you very very sure")
Chapter 8: Strings 154
Composing together this function and the split method from the previous section makes a useful
combination — we’ll clean out the punctuation, and split will clean out the newlines and tabs while
turning the string into a list of words:
1 my_story = """
2 Pythons are constrictors, which means that they will 'squeeze' the life
3 out of their prey. They coil themselves around their prey and with
4 each breath the creature takes the snake will squeeze a little tighter
5 until they stop breathing completely. Once the heart stops the prey
6 is swallowed whole. The entire animal is digested in the snake's
7 stomach except for fur or feathers. What do you think happens to the fur,
8 feathers, beaks, and eggshells? The 'extra stuff' gets passed out as ---
9 you guessed it --- snake POOP! """
10
11 wds = remove_punctuation(my_story).split()
12 print(wds)
The output:
There are other useful string methods, but this book isn’t intended to be a reference manual. On
the other hand, the Python Library Reference is. Along with a wealth of other documentation, it is
available at the Python website⁹.
The template string contains place holders, ... {0} ... {1} ... {2} ... etc. The format method
substitutes its arguments into the place holders. The numbers in the place holders are indexes that
determine which argument gets substituted — make sure you understand line 6 above!
But there’s more! Each of the replacement fields can also contain a format specification — it is
always introduced by the : symbol (Line 11 above uses one.) This modifies how the substitutions
are made into the template, and can control things like:
• whether the field is aligned to the left <, center ^, or right >
• the width allocated to the field within the result string (a number like 10)
• the type of conversion (we’ll initially only force conversion to float, f, as we did in line 11 of
the code above, or perhaps we’ll ask integer numbers to be converted to hexadecimal using x)
• if the type conversion is a float, you can also specify how many decimal places are wanted
(typically, .2f is useful for working with currencies to two decimal places.)
Let’s do a few simple and common examples that should be enough for most needs. If you need to
do anything more esoteric, use help and read all the powerful, gory details.
1 n1 = "Paris"
2 n2 = "Whitney"
3 n3 = "Hilton"
4
5 print("Pi to three decimal places is {0:.3f}".format(3.1415926))
6 print("123456789 123456789 123456789 123456789 123456789 123456789")
7 print("|||{0:<15}|||{1:^15}|||{2:>15}|||Born in {3}|||"
8 .format(n1,n2,n3,1981))
9 print("The decimal value {0} converts to hex value {0:x}"
10 .format(123456))
You can have multiple placeholders indexing the same argument, or perhaps even have extra
arguments that are not referenced at all:
Chapter 8: Strings 156
1 letter = """
2 Dear {0} {2}.
3 {0}, I have an interesting money-making proposition for you!
4 If you deposit $10 million into my bank account, I can
5 double your money ...
6 """
7
8 print(letter.format("Paris", "Whitney", "Hilton"))
9 print(letter.format("Bill", "Henry", "Gates"))
As you might expect, you’ll get an index error if your placeholders refer to arguments that you do
not provide:
The following example illustrates the real utility of string formatting. First, we’ll try to print a table
without using string formatting:
1 print("i\ti**2\ti**3\ti**5\ti**10\ti**20")
2 for i in range(1, 11):
3 print(i, "\t", i**2, "\t", i**3, "\t", i**5, "\t",
4 i**10, "\t", i**20)
This program prints out a table of various powers of the numbers from 1 to 10. (This assumes that
the tab width is 8. You might see something even worse than this if you tab width is set to 4.) In its
current form it relies on the tab character ( \t) to align the columns of values, but this breaks down
when the values in the table get larger than the tab width:
Chapter 8: Strings 157
One possible solution would be to change the tab width, but the first column already has more space
than it needs. The best solution would be to set the width of each column independently. As you may
have guessed by now, string formatting provides a much nicer solution. We can also right-justify
each field:
1 layout = "{0:>4}{1:>6}{2:>6}{3:>8}{4:>13}{5:>24}"
2
3 print(layout.format("i", "i**2", "i**3", "i**5", "i**10", "i**20"))
4 for i in range(1, 11):
5 print(layout.format(i, i**2, i**3, i**5, i**10, i**20))
Running this version produces the following (much more satisfying) output:
8.17. Summary
This chapter introduced a lot of new ideas. The following summary may prove helpful in remem-
bering what you learned.
Chapter 8: Strings 158
indexing ([])
Access a single character in a string using its position (starting from
0). Example: "This"[2] evaluates to "i".
length function (len)
Returns the number of characters in a string. Example:
len("happy") evaluates to 5.
1 for ch in "Example":
2 ...
executes the body of the loop 7 times with different values of ch each time.
slicing ([:])
A slice is a substring of a string. Example: 'bananas and cream'[3:6] evaluates to ana (so does
'bananas and cream'[1:4]).
8.18. Glossary
compound data type
A data type in which the values are made up of components, or elements, that are themselves values.
default value
The value given to an optional parameter if no argument for it is
provided in the function call.
docstring
A string constant on the first line of a function or module definition
(and as we will see later, in class and method definitions as well).
Chapter 8: Strings 159
8.19. Exercises
We suggest you create a single file containing the test scaffolding from our previous chapters, and
put all functions that require tests into that file.
Chapter 8: Strings 160
1 >>> "Python"[1]
2 >>> "Strings are sequences of characters."[5]
3 >>> len("wonderful")
4 >>> "Mystery"[:4]
5 >>> "p" in "Pineapple"
6 >>> "apple" in "Pineapple"
7 >>> "pear" not in "Pineapple"
8 >>> "apple" > "pineapple"
9 >>> "pineapple" < "Peach"
2. Modify:
1 prefixes = "JKLMNOPQ"
2 suffix = "ack"
3
4 for letter in prefixes:
5 print(letter + suffix)
1 fruit = "banana"
2 count = 0
3 for char in fruit:
4 if char == "a":
5 count += 1
6 print(count)
in a function named count_letters, and generalize it so that it accepts the string and the letter as
arguments. Make the function return the number of characters, rather than print the answer. The
caller should do the printing.
4. Now rewrite the count_letters function so that instead of traversing the string, it repeatedly
calls the find method, with the optional third parameter to locate new occurrences of the letter
being counted.
5. Assign to a variable in your program a triple-quoted string that contains your favourite
paragraph of text — perhaps a poem, a speech, instructions to bake a cake, some inspirational
verses, etc.
Write a function which removes all punctuation from the string, breaks the string into a list of
words, and counts the number of words in your text that contain the letter “e”. Your program
should print an analysis of the text like this:
Chapter 8: Strings 161
1 Your text contains 243 words, of which 109 (44.8%) contain an "e".
1 1 2 3 4 5 6 7 8 9 10 11 12
2 :--------------------------------------------------
3 1: 1 2 3 4 5 6 7 8 9 10 11 12
4 2: 2 4 6 8 10 12 14 16 18 20 22 24
5 3: 3 6 9 12 15 18 21 24 27 30 33 36
6 4: 4 8 12 16 20 24 28 32 36 40 44 48
7 5: 5 10 15 20 25 30 35 40 45 50 55 60
8 6: 6 12 18 24 30 36 42 48 54 60 66 72
9 7: 7 14 21 28 35 42 49 56 63 70 77 84
10 8: 8 16 24 32 40 48 56 64 72 80 88 96
11 9: 9 18 27 36 45 54 63 72 81 90 99 108
12 10: 10 20 30 40 50 60 70 80 90 100 110 120
13 11: 11 22 33 44 55 66 77 88 99 110 121 132
14 12: 12 24 36 48 60 72 84 96 108 120 132 144
7. Write a function that reverses its string argument, and satisfies these tests:
1 test(reverse("happy") == "yppah")
2 test(reverse("Python") == "nohtyP")
3 test(reverse("") == "")
4 test(reverse("a") == "a")
1 test(mirror("good") == "gooddoog")
2 test(mirror("Python") == "PythonnohtyP")
3 test(mirror("") == "")
4 test(mirror("a") == "aa")
9. Write a function that removes all occurrences of a given letter from a string:
Chapter 8: Strings 162
10. Write a function that recognizes palindromes. (Hint: use your reverse function to make this
easy!):
1 test(is_palindrome("abba"))
2 test(not is_palindrome("abab"))
3 test(is_palindrome("tenet"))
4 test(not is_palindrome("banana"))
5 test(is_palindrome("straw warts"))
6 test(is_palindrome("a"))
7 # test(is_palindrome("")) # Is an empty string a palindrome?
11. Write a function that counts how many times a substring occurs in a string:
1 test(count("is", "Mississippi") == 2)
2 test(count("an", "banana") == 2)
3 test(count("ana", "banana") == 2)
4 test(count("nana", "banana") == 1)
5 test(count("nanan", "banana") == 0)
6 test(count("aaa", "aaaaaa") == 4)
12. Write a function that removes the first occurrence of a string from another string:
13. Write a function that removes all occurrences of a string from another string:
Chapter 8: Strings 163
This is an example of a data structure - a mechanism for grouping and organizing data to make it
easier to use.
The pair is an example of a tuple. Generalizing this, a tuple can be used to group any number of
items into a single compound value. Syntactically, a tuple is a comma-separated sequence of values.
Although it is not necessary, it is conventional to enclose tuples in parentheses:
1 >>> julia = ("Julia", "Roberts", 1967, "Duplicity", 2009, "Actress", "Atlanta, Georg\
2 ia")
Tuples are useful for representing what other languages often call records -some related information
that belongs together, like your student record. There is no description of what each of these fields
means, but we can guess. A tuple lets us ”chunk” together related information and use it as a single
thing.
Tuples support the same sequence operations as strings. The index operator selects an element from
a tuple.
1 >>> julia[2]
2 1967
But if we try to use item assignment to modify one of the elements of the tuple, we get an error:
So like strings, tuples are immutable. Once Python has created a tuple in memory, it cannot be
changed.
Of course, even if we can’t modify the elements of a tuple, we can always make the julia variable
reference a new tuple holding different information. To construct the new tuple, it is convenient that
we can slice parts of the old tuple and join up the bits to make the new tuple. So if julia has a new
recent film, we could change her variable to
reference a new tuple that used some information from the old one:
Chapter 9: Tuples 165
To create a tuple with a single element (but you’re probably not likely to do that too often), we have
to include the final comma, because without the final comma, Python treats the (5) below as an
integer in parentheses:
This does the equivalent of seven assignment statements, all on one easy line. One requirement is
that the number of variables on the left must match the number of elements in the tuple.
One way to think of tuple assignment is as tuple packing/unpacking.
In tuple packing, the values on the left are ’packed’ together in a tuple:
In tuple unpacking, the values in a tuple on the right are ’unpacked’ into the variables/names on the
left:
Chapter 9: Tuples 166
Once in a while, it is useful to swap the values of two variables. With conventional assignment
statements, we have to use a temporary variable. For example, to swap a and b:
1 temp = a
2 a = b
3 b = temp
1 (a, b) = (b, a)
The left side is a tuple of variables; the right side is a tuple of values. Each value is assigned to its
respective variable. All the expressions on the right side are evaluated before any of the assignments.
This feature makes tuple assignment quite versatile.
Naturally, the number of variables on the left and the number of values on the right have to be the
same:
1 def f(r):
2 """ Return (circumference, area) of a circle of radius r """
3 c = 2 * math.pi * r
4 a = math.pi * r * r
5 return (c, a)
1 students = [
2 ("John", ["CompSci", "Physics"]),
3 ("Vusi", ["Maths", "CompSci", "Stats"]),
4 ("Jess", ["CompSci", "Accounting", "Economics", "Management"]),
5 ("Sarah", ["InfSys", "Accounting", "Economics", "CommLaw"]),
6 ("Zuki", ["Sociology", "Economics", "Law", "Stats", "Music"])]
Tuples items can themselves be other tuples. For example, we could improve the information about
our movie stars to hold the full date of birth rather than just the year, and we could have a list of
some of her movies and dates that they were made, and so on:
Notice in this case that the tuple has just five elements - but each of those in turn can be another tuple,
a list, a string, or any other kind of Python value. This property is known as being heterogeneous,
meaning that it can be composed of elements of different types.
9.5. Glossary
data structure
An organization of data for the purpose of making it easier to use.
Chapter 9: Tuples 168
9.6. Exercises
1. We’ve said nothing in this chapter about whether you can pass tuples as arguments to a function.
Construct a small Python example to test whether this is possible, and write up your findings.
2. Is a pair a generalization of a tuple, or is a tuple a generalization of a pair?
3. Is a pair a kind of tuple, or is a tuple a kind of pair?
Chapter 10: Event handling
10.1. Event-driven programming
Most programs and devices like a cellphone respond to events – things that happen. For example, you
might move your mouse, and the computer responds. Or you click a button, and the program does
something interesting. In this chapter we’ll touch very briefly on how event-driven programming
works.
1 import turtle
2
3 turtle.setup(400,500) # Determine the window size
4 wn = turtle.Screen() # Get a reference to the window
5 wn.title("Handling keypresses!") # Change the window title
6 wn.bgcolor("lightgreen") # Set the background color
7 tess = turtle.Turtle() # Create our favorite turtle
8
9 # The next four functions are our "event handlers".
10 def h1():
11 tess.forward(30)
12
13 def h2():
14 tess.left(45)
15
16 def h3():
17 tess.right(45)
18
19 def h4():
20 wn.bye() # Close down the turtle window
21
22 # These lines "wire up" keypresses to the handlers we've defined.
23 wn.onkey(h1, "Up")
Chapter 10: Event handling 170
24 wn.onkey(h2, "Left")
25 wn.onkey(h3, "Right")
26 wn.onkey(h4, "q")
27
28 # Now we need to tell the window to start listening for events,
29 # If any of the keys that we're monitoring is pressed, its
30 # handler will be called.
31 wn.listen()
32 wn.mainloop()
1 import turtle
2
3 turtle.setup(400,500)
4 wn = turtle.Screen()
5 wn.title("How to handle mouse clicks on the window!")
6 wn.bgcolor("lightgreen")
7
8 tess = turtle.Turtle()
9 tess.color("purple")
10 tess.pensize(3)
11 tess.shape("circle")
12
Chapter 10: Event handling 171
There is a new turtle method used at line 14 – this allows us to move the turtle to an absolute
coordinate position. (Most of the examples that we’ve seen so far move the turtle relative to where it
currently is). So what this program does is move the turtle (and draw a line) to wherever the mouse
is clicked. Try it out!
If we add this line before line 14, we’ll learn a useful debugging trick too:
Because we can easily change the text in the window’s title bar, it is a useful place to display
occasional debugging or status information. (Of course, this is not the real purpose of the window
title!)
But there is more!
Not only can the window receive mouse events: individual turtles can also have their own handlers
for mouse clicks. The turtle that “receives” the click event will be the one under the mouse. So we’ll
create two turtles. Each will bind a handler to its own onclick event. And the two handlers can do
different things for their turtles.
1 import turtle
2
3 turtle.setup(400,500) # Determine the window size
4 wn = turtle.Screen() # Get a reference to the window
5 wn.title("Handling mouse clicks!") # Change the window title
6 wn.bgcolor("lightgreen") # Set the background color
7 tess = turtle.Turtle() # Create two turtles
8 tess.color("purple")
9 alex = turtle.Turtle() # Move them apart
10 alex.color("blue")
11 alex.forward(100)
12
13 def handler_for_tess(x, y):
14 wn.title("Tess clicked at {0}, {1}".format(x, y))
15 tess.left(42)
16 tess.forward(30)
17
18 def handler_for_alex(x, y):
Chapter 10: Event handling 172
1 import turtle
2
3 turtle.setup(400,500)
4 wn = turtle.Screen()
5 wn.title("Using a timer")
6 wn.bgcolor("lightgreen")
7
8 tess = turtle.Turtle()
9 tess.color("purple")
10 tess.pensize(3)
11
12 def h1():
13 tess.forward(100)
14 tess.left(56)
15
16 wn.ontimer(h1, 2000)
17 wn.mainloop()
On line 16 the timer is started and set to explode in 2000 milliseconds (2 seconds). When the event
does occur, the handler is called, and tess springs into action.
Unfortunately, when one sets a timer, it only goes off once. So a common idiom, or style, is to restart
the timer inside the handler. In this way the timer will keep on giving new events. Try this program:
Chapter 10: Event handling 173
1 import turtle
2
3 turtle.setup(400,500)
4 wn = turtle.Screen()
5 wn.title("Using a timer to get events!")
6 wn.bgcolor("lightgreen")
7
8 tess = turtle.Turtle()
9 tess.color("purple")
10
11 def h1():
12 tess.forward(100)
13 tess.left(56)
14 wn.ontimer(h1, 60)
15
16 h1()
17 wn.mainloop()
We’re going to build a program that uses a turtle to simulate the traffic lights. There are three lessons
here. The first shows off some different ways to use our turtles. The second demonstrates how we
would program a state machine in Python, by using a variable to keep track of the current state, and
a number of different if statements to inspect
the current state, and take the actions as we change to a different state. The third lesson is to use
events from the keyboard to trigger the state changes.
Copy and run this program. Make sure you understand what each line does, consulting the
documentation as you need to.
15 tess.forward(80)
16 tess.left(90)
17 tess.forward(200)
18 tess.circle(40, 180)
19 tess.forward(200)
20 tess.left(90)
21 tess.end_fill()
22
23
24 draw_housing()
25
26 tess.penup()
27 # Position tess onto the place where the green light should be
28 tess.forward(40)
29 tess.left(90)
30 tess.forward(50)
31 # Turn tess into a big green circle
32 tess.shape("circle")
33 tess.shapesize(3)
34 tess.fillcolor("green")
35
36 # A traffic light is a kind of state machine with three states,
37 # Green, Orange, Red. We number these states 0, 1, 2
38 # When the machine changes state, we change tess' position and
39 # her fillcolor.
40
41 # This variable holds the current state of the machine
42 state_num = 0
43
44
45 def advance_state_machine():
46 global state_num
47 if state_num == 0: # Transition from state 0 to state 1
48 tess.forward(70)
49 tess.fillcolor("orange")
50 state_num = 1
51 elif state_num == 1: # Transition from state 1 to state 2
52 tess.forward(70)
53 tess.fillcolor("red")
54 state_num = 2
55 else: # Transition from state 2 to state 0
56 tess.back(140)
57 tess.fillcolor("green")
Chapter 10: Event handling 176
58 state_num = 0
59
60 # Bind the event handler to the space key.
61 wn.onkey(advance_state_machine, "space")
62
63 wn.listen() # Listen for events
64 wn.mainloop()
The new Python statement is at line 46. The global keyword tells Python not to create a new local
variable for state_num (in spite of the fact that the function assigns to this variable at lines 50, 54,
and 58). Instead, in this function, state_num always refers to the variable that was created at line 42.
What the code in advance_state_machine does is advance from whatever the current state is, to the
next state. On the state change we move tess to her new position, change her color, and, of course,
we assign to state_num the number of the new state we’ve just entered.
Each time the space bar is pressed, the event handler causes the traffic light machine to move to its
new state.
10.6. Glossary
bind
We bind a function (or associate it) with an event, meaning that when the event occurs,
the function is called to handle it.
event
Something that happens “outside” the normal control flow of our program, usually from some
user action. Typical events are mouse operations and keypresses. We’ve also seen that a
timer can be primed to create an event.
handler
A function that is called in response to an event.
10.7. Exercises
1. Add some new key bindings to the first sample program:
- Pressing keys R, G or B should change tess’s color to Red, Green or Blue.
- Pressing keys + or - should increase or decrease the width of tess’s pen. Ensure that the pen size
stays between 1 and 20 (inclusive).
- Handle some other keys to change some attributes of tess, or attributes of the window, or to give
her new behaviour that can be controlled from the keyboard.
Chapter 10: Event handling 177
2. Change the traffic light program so that changes occur automatically, driven by a timer.
3. In an earlier chapter we saw two turtle methods, hideturtle and showturtle that can hide or show
a turtle. This suggests that we could take a different approach to the traffic lights program. Add to
your program above as follows: draw a second housing for another set of traffic lights. Create three
separate turtles to represent each of the green, orange and red lights, and position them appropriately
within your new housing. As your state changes occur, just make one of the three turtles visible at
any time. Once you’ve made the changes, sit back and ponder some deep thoughts: you’ve now got
two different ways to use turtles to simulate the traffic lights, and both seem to work. Is one approach
somehow preferable to the other? Which one more closely resembles reality – i.e. the traffic lights
in your town?
4. Now that you’ve got a traffic light program with different turtles for each light, perhaps the
visibility / invisibility trick wasn’t such a great idea. If we watch traffic lights, they turn on and off
– but when they’re off they are still there, perhaps just a darker color. Modify the program now so
that the lights don’t
disappear: they are either on, or off. But when they’re off, they’re still visible.
5. Your traffic light controller program has been patented, and you’re about to become seriously rich.
But your new client needs a change. They want four states in their state machine: Green, then Green
and Orange together, then Orange only, and then Red. Additionally, they want different times spent
in each state. The machine should spend 3
seconds in the Green state, followed by one second in the Green+Orange state, then one second in
the Orange state, and then 2 seconds in the Red state. Change the logic in the state machine.
6. If you don’t know how tennis scoring works, ask a friend or consult Wikipedia. A single game
in tennis between player A and player B always has a score. We want to think about the “state of
the score” as a state machine. The game starts in state (0, 0), meaning neither player has any score
yet. We’ll assume the first element in this pair is the score for player A. If player A wins the first
point, the score becomes (15, 0). If B wins the first point, the state becomes (0, 15). Below are the first
few states and transitions for a state diagram. In this diagram, each state has two possible outcomes
(A wins the next point, or B does), and the uppermost arrow is always the transition that happens
when A wins the point. Complete the diagram, showing all transitions and all states. (Hint: there
are twenty states, if you include the duece state, the advantage states, and the “A wins” and “B wins”
states in your diagram.)
Chapter 10: Event handling 178
Chapter 11: Lists
A list is an ordered collection of values. The values that make up a list are called its elements, or
its items. We will use the term element or item to mean the same thing. Lists are similar to strings,
which are ordered collections of characters, except that the elements of a list can be of any type. Lists
and strings — and other collections that maintain the order of their items — are called sequences.
The first example is a list of four integers. The second is a list of three strings. The elements of
a list don’t have to be the same type. The following list contains a string, a float, an integer, and
(amazingly) another list:
1 >>> numbers[0]
2 17
1 >>> numbers[9-8]
2 5
3 >>> numbers[1.0]
4 Traceback (most recent call last):
5 File "<interactive input>", line 1, in <module>
6 TypeError: list indices must be integers, not float
If you try to access or assign to an element that does not exist, you get a runtime error:
1 >>> numbers[2]
2 Traceback (most recent call last):
3 File "<interactive input>", line 1, in <module>
4 IndexError: list index out of range
Each time through the loop, the variable i is used as an index into the list, printing the i‘th element.
This pattern of computation is called a list traversal.
The above sample doesn’t need or use the index i for anything besides getting the items from the
list, so this more direct version — where the for loop gets the items — might be preferred:
The last time the body of the loop is executed, i is len(horsemen) - 1, which is the index of the last
element. (But the version without the index looks even better now!)
Although a list can contain another list, the nested list still counts as a single element in its parent
list. The length of this list is 4:
Using this produces a more elegant version of the nested loop program we previously used to count
the number of students doing Computer Science in the section nested_data:
1 students = [
2 ("John", ["CompSci", "Physics"]),
3 ("Vusi", ["Maths", "CompSci", "Stats"]),
4 ("Jess", ["CompSci", "Accounting", "Economics", "Management"]),
5 ("Sarah", ["InfSys", "Accounting", "Economics", "CommLaw"]),
6 ("Zuki", ["Sociology", "Economics", "Law", "Stats", "Music"])]
7
8 # Count how many students are taking CompSci
9 counter = 0
10 for (name, subjects) in students:
11 if "CompSci" in subjects:
12 counter += 1
13
14 print("The number of students taking CompSci is", counter)
Chapter 11: Lists 182
1 >>> a = [1, 2, 3]
2 >>> b = [4, 5, 6]
3 >>> c = a + b
4 >>> c
5 [1, 2, 3, 4, 5, 6]
1 >>> [0] * 4
2 [0, 0, 0, 0]
3 >>> [1, 2, 3] * 3
4 [1, 2, 3, 1, 2, 3, 1, 2, 3]
The first example repeats [0] four times. The second example repeats the list [1, 2, 3] three times.
The bracket operator applied to a list can appear anywhere in an expression. When it appears on the
left side of an assignment, it changes one of the elements in the list, so the first element of fruit has
been changed from "banana" to "pear", and the last from "quince" to "orange". An assignment to
an element of a list is called item assignment. Item assignment does not work for strings:
We can also remove elements from a list by assigning an empty list to them:
And we can add elements to a list by squeezing them into an empty slice at the desired location:
Chapter 11: Lists 184
As you might expect, del causes a runtime error if the index is out of range.
You can also use del with a slice to delete a sublist:
As usual, the sublist selected by slice contains all the elements up to, but not including, the second
index.
1 a = "banana"
2 b = "banana"
we know that a and b will refer to a string object with the letters "banana". But we don’t know yet
whether they point to the same string object.
There are two possible ways the Python interpreter could arrange its memory:
Chapter 11: Lists 185
In one case, a and b refer to two different objects that have the same value. In the second case, they
refer to the same object.
We can test whether two names refer to the same object using the is operator:
1 >>> a is b
2 True
This tells us that both a and b refer to the same object, and that it is the second of the two state
snapshots that accurately describes the relationship.
Since strings are immutable, Python optimizes resources by making two names that refer to the same
string value refer to the same object.
This is not the case with lists:
1 >>> a = [1, 2, 3]
2 >>> b = [1, 2, 3]
3 >>> a == b
4 True
5 >>> a is b
6 False
a and b have the same value but do not refer to the same object.
11.10. Aliasing
Since variables refer to objects, if we assign one variable to another, both variables refer to the same
object:
Chapter 11: Lists 186
1 >>> a = [1, 2, 3]
2 >>> b = a
3 >>> a is b
4 True
Because the same list has two different names, a and b, we say that it is aliased. Changes made with
one alias affect the other:
1 >>> b[0] = 5
2 >>> a
3 [5, 2, 3]
1 >>> a = [1, 2, 3]
2 >>> b = a[:]
3 >>> b
4 [1, 2, 3]
Taking any slice of a creates a new list. In this case the slice happens to consist of the whole list. So
now the relationship is like this:
Chapter 11: Lists 187
Now we are free to make changes to b without worrying that we’ll inadvertently be changing a:
1 >>> b[0] = 5
2 >>> a
3 [1, 2, 3]
It almost reads like English: For (every) friend in (the list of) friends, print (the name of the) friend.
Any list expression can be used in a for loop:
The first example prints all the multiples of 3 between 0 and 19. The second example expresses
enthusiasm for various fruits.
Since lists are mutable, we often want to traverse a list, changing each of its elements. The following
squares all the numbers in the list xs:
Chapter 11: Lists 188
1 xs = [1, 2, 3, 4, 5]
2
3 for i in range(len(xs)):
4 xs[i] = xs[i]**2
Take a moment to think about range(len(xs)) until you understand how it works.
In this example we are interested in both the value of an item, (we want to square that value), and
its index (so that we can assign the new value to that position). This pattern is common enough that
Python
provides a nicer way to implement it:
1 xs = [1, 2, 3, 4, 5]
2
3 for (i, val) in enumerate(xs):
4 xs[i] = val**2
enumerate generates pairs of both (index, value) during the list traversal. Try this next example to
see more clearly how enumerate works:
1 0 banana
2 1 apple
3 2 pear
4 3 lemon
1 def double_stuff(a_list):
2 """ Overwrite each element in a_list with double its value. """
3 for (idx, val) in enumerate(a_list):
4 a_list[idx] = 2 * val
1 things = [2, 5, 9]
2 double_stuff(things)
3 print(things)
In the function above, the parameter a_list and the variable things are aliases for the same object.
So before any changes to the elements in the list, the state snapshot looks like this:
Since the list object is shared by two frames, we drew it between them.
If a function modifies the items of a list parameter, the caller sees the change.
Use the Python visualizer!
We’ve already mentioned the Python visualizer at http://pythontutor.com. It is a very useful tool
for building a good understanding of references, aliases, assignments, and passing arguments to
functions. Pay special attention to cases where you clone a list or have two separate lists, and cases
where there is only one underlying list, but more than one variable is aliased to reference the list.
1 >>> mylist = []
2 >>> mylist.append(5)
3 >>> mylist.append(27)
4 >>> mylist.append(3)
5 >>> mylist.append(12)
6 >>> mylist
7 [5, 27, 3, 12]
append is a list method which adds the argument passed to it to the end of the list. We’ll use it heavily
when we’re creating new lists. Continuing with this example, we show several other list methods:
Experiment and play with the list methods shown here, and read their documentation until you feel
confident that you understand how they work.
1 def double_stuff(a_list):
2 """ Return a new list which contains
3 doubles of the elements in a_list.
4 """
5 new_list = []
6 for value in a_list:
7 new_elem = 2 * value
8 new_list.append(new_elem)
9
10 return new_list
An early rule we saw for assignment said “first evaluate the right hand side, then assign the resulting
value to the variable”. So it is quite safe to assign the function result to the same variable that was
passed to the function:
Let us show another use of this pattern. Assume you already have a function is_prime(x) that can
test if x is prime. Write a function to return a list of all prime numbers less than n:
1 def primes_lessthan(n):
2 """ Return a list of all prime numbers less than n. """
3 result = []
4 for i in range(2, n):
5 if is_prime(i):
6 result.append(i)
7 return result
An optional argument called a delimiter can be used to specify which string to use as the boundary
marker between substrings. The following example uses the string ai as the delimiter:
1 >>> song.split("ai")
2 ['The r', 'n in Sp', 'n...']
The list that you glue together (wds in this example) is not modified. Also, as these next examples
show, you can use empty glue or multi-character strings as glue:
One particular feature of range is that it doesn’t instantly compute all its values: it “puts off” the
computation, and does it on demand, or “lazily”. We’ll say that it gives a promise to produce the
values
when they are needed. This is very convenient if your computation short-circuits a search and
returns early, as in this case:
1 def f(n):
2 """ Find the first positive integer between 101 and less
3 than n that is divisible by 21
4 """
5 for i in range(101, n):
6 if (i % 21 == 0):
7 return i
8
9
10 test(f(110) == 105)
11 test(f(1000000000) == 105)
Chapter 11: Lists 194
In the second test, if range were to eagerly go about building a list with all those elements, you
would soon exhaust your computer’s available memory and crash the program. But it is cleverer
than that! This computation works just fine, because the range object is just a promise to produce
the elements if and when they are needed. Once the condition in the if becomes true, no further
elements are generated, and the function returns. (Note: Before Python 3, range was not lazy. If you
use an earlier versions of Python, YMMV!)
YMMV: Your Mileage May Vary
The acronym YMMV stands for your mileage may vary. American car advertisements often quoted
fuel consumption figures for cars, e.g. that they would get 28 miles per gallon. But this always had
to be accompanied by legal small-print warning the reader that they might not get the same. The
term YMMV is now used idiomatically to mean “your results may differ”, e.g. The battery life on
this phone is 3 days, but YMMV.
You’ll sometimes find the lazy range wrapped in a call to list. This forces Python to turn the lazy
promise into an actual list:
1 >>> print(nested[3])
2 [10, 20]
To extract an element from the nested list, we can proceed in two steps:
1 >>> nested[3][1]
2 20
Bracket operators evaluate from left to right, so this expression gets the 3’th element of nested and
extracts the 1’th element from it.
11.20. Matrices
Nested lists are often used to represent matrices. For example, the matrix:
mx is a list with three elements, where each element is a row of the matrix. We can select an entire
row from the matrix in the usual way:
1 >>> mx[1]
2 [4, 5, 6]
Or we can extract a single element from the matrix using the double-index form:
1 >>> mx[1][2]
2 6
The first index selects the row, and the second index selects the column. Although this way of
representing matrices is common, it is not the only possibility. A small variation is to use a list of
columns instead of a list of rows. Later we will see a more radical alternative using a dictionary.
11.21. Glossary
aliases
Multiple variables that contain references to the same object.
clone
To create a new object that has the same value as an existing object.
Chapter 11: Lists 196
11.22. Exercises
1. What is the Python interpreter’s response to the following?
The three arguments to the range function are start, stop, and step, respectively. In this example,
start is greater than stop. What happens if start < stop and step < 0? Write a rule
for the relationships among start, stop, and step.
1 import turtle
2
3 tess = turtle.Turtle()
4 alex = tess
5 alex.color("hotpink")
Chapter 11: Lists 198
Does this fragment create one or two turtle instances? Does setting the color of alex also change
the color of tess? Explain in detail.
3. Draw a state snapshot for a and b before and after the third line of the following Python code is
executed:
1 a = [1, 2, 3]
2 b = a[:]
3 b[0] = 5
Write a function add_vectors(u, v) that takes two lists of numbers of the same length, and returns
a new list containing the sums of the corresponding elements of each:
6. Write a function scalar_mult(s, v) that takes a number, s, and a list, v and returns the scalar
multiple¹⁰ of v by s:
¹⁰http://en.wikipedia.org/wiki/Scalar_multiple
Chapter 11: Lists 199
7. Write a function dot_product(u, v) that takes two lists of numbers of the same length, and returns
the
sum of the products of the corresponding elements of each (the dot_product¹¹).
8. Extra challenge for the mathematically inclined: Write a function cross_product(u, v) that
takes two
lists of numbers of length 3 and returns their cross product¹². You should write your own tests.
9. Describe the relationship between " ".join(song.split()) and song in the fragment of code
below. Are
they the same for all strings assigned to song? When would they be different?
10. Write a function replace(s, old, new) that replaces all occurrences of old with new in a string
s:
Run this program and describe the results. Oops! So it didn’t do what you intended! Explain why
not. Using a Python visualizer like the one at http://pythontutor.com may help you build a good
conceptual model of what is going on. What will be the values of a and b after the call to swap?
Chapter 12: Modules
A module is a file containing Python definitions and statements intended for use in other Python
programs. There are many Python modules that come with Python as part of the standard library.
We have seen at least two of these already, the turtle module and the string module.
We have also shown you how to access help. The help system contains a listing of all the standard
modules that are available with Python. Play with help!
1 import random
2
3 # Create a black box object that generates random numbers
4 rng = random.Random()
5
6 dice_throw = rng.randrange(1,7) # Return an int, one of 1,2,3,4,5,6
7 delay_in_seconds = rng.random() * 5.0
The randrange method call generates an integer between its lower and upper argument, using the
same semantics as range — so the lower bound is included, but the upper bound is excluded. All the
values have
an equal probability of occurring (i.e. the results are uniformly distributed). Like range, randrange
can also take an optional step argument. So let’s assume we needed a random odd number less than
100, we could say:
Chapter 12: Modules 202
Other methods can also generate other distributions e.g. a bell-shaped, or “normal” distribution
might be more appropriate for estimating seasonal rainfall, or the concentration of a compound in
the body after taking a dose of medicine.
The random method returns a floating point number in the interval [0.0, 1.0) — the square bracket
means “closed interval on the left” and the round parenthesis means “open interval on the right”. In
other words, 0.0 is possible, but all returned numbers will be strictly less than 1.0. It is usual to scale
the results after calling this method, to get them into an interval suitable for your application. In the
case shown here, we’ve converted the result of the method call to a number in the interval [0.0, 5.0).
Once more, these are uniformly distributed numbers — numbers close to 0 are just as likely to occur
as numbers close to 0.5, or numbers close to 1.0.
This example shows how to shuffle a list. (shuffle cannot work directly with a lazy promise, so
notice that we had to convert the range object using the list type converter first.)
This alternative way of creating a random number generator gives an explicit seed value to the
object. Without this argument, the system probably uses something based on the time. So grabbing
some random numbers from drng today will give you precisely the same random sequence as it will
tomorrow!
1 import random
2
3 def make_random_ints(num, lower_bound, upper_bound):
4 """
5 Generate a list containing num random ints between lower_bound
6 and upper_bound. upper_bound is an open bound.
7 """
8 rng = random.Random() # Create a random number generator
9 result = []
10 for i in range(num):
11 result.append(rng.randrange(lower_bound, upper_bound))
12 return result
Notice that we got a duplicate in the result. Often this is wanted, e.g. if we throw a die five times,
we would expect some duplicates.
But what if you don’t want duplicates? If you wanted 5 distinct months, then this algorithm is wrong.
In this case a good algorithm is to generate the list of possibilities, shuffle it, and slice off the number
of elements you want:
In statistics courses, the first case — allowing duplicates — is usually described as pulling balls out of
a bag with replacement — you put the drawn ball back in each time, so it can occur again. The latter
case, with no duplicates, is usually described as pulling balls out of the bag without replacement.
Once the ball is drawn, it doesn’t go back to be drawn again. TV lotto games work like this.
The second “shuffle and slice” algorithm would not be so great if you only wanted a few elements,
but from a very large domain. Suppose I wanted five numbers between one and ten million, without
duplicates. Generating a list of ten million items, shuffling it, and then slicing off the first five would
be a performance disaster! So let us have another try:
Chapter 12: Modules 204
1 import random
2
3 def make_random_ints_no_dups(num, lower_bound, upper_bound):
4 """
5 Generate a list containing num random ints between
6 lower_bound and upper_bound. upper_bound is an open bound.
7 The result list cannot contain duplicates.
8 """
9 result = []
10 rng = random.Random()
11 for i in range(num):
12 while True:
13 candidate = rng.randrange(lower_bound, upper_bound)
14 if candidate not in result:
15 break
16 result.append(candidate)
17 return result
18
19 xs = make_random_ints_no_dups(5, 1, 10000000)
20 print(xs)
Even this function has its pitfalls. Can you spot what is going to happen in this case?
1 xs = make_random_ints_no_dups(10, 1, 6)
Let’s try a small example. Python has a built-in sum function that can sum the elements in a list.
We can also write our own. How do we think they would compare for speed? We’ll try to do the
summation of a list
[0, 1, 2 …] in both cases, and compare the results:
1 import time
2
3 def do_my_sum(xs):
4 sum = 0
5 for v in xs:
6 sum += v
7 return sum
8
9 sz = 10000000 # Lets have 10 million elements in the list
10 testdata = range(sz)
11
12 t0 = time.process_time()
13 my_result = do_my_sum(testdata)
14 t1 = time.process_time()
15 print("my_result = {0} (time taken = {1:.4f} seconds)"
16 .format(my_result, t1-t0))
17
18 t2 = time.process_time()
19 their_result = sum(testdata)
20 t3 = time.process_time()
21 print("their_result = {0} (time taken = {1:.4f} seconds)"
22 .format(their_result, t3-t2))
So our function runs about 57% slower than the built-in one. Generating and summing up ten million
elements in under a second is not too shabby!
Like almost all other programming languages, angles are expressed in radians rather than degrees.
There are two functions radians and degrees to convert between these two popular ways of
measuring angles.
Notice another difference between this module and our use of random and turtle: in random and
turtle we create objects and we call methods on the object. This is because objects have state — a
turtle has a color, a position, a heading, etc., and every random number generator has a seed value
that determines its next result.
Mathematical functions are “pure” and don’t have any state — calculating the square root of 2.0
doesn’t depend on any kind of state or history about what happened in the past. So the functions
are not methods of an object — they are simply functions that are grouped together in a module
called math.
We can now use our module, both in scripts we write, or in the interactive Python interpreter. To do
so, we must first import the module.
Chapter 12: Modules 207
We do not include the .py file extension when importing. Python expects the file names of Python
modules to end in .py, so the file extension is not included in the import statement.
The use of modules makes it possible to break up very large programs into manageable sized parts,
and to keep related parts together.
12.5. Namespaces
A namespace is a collection of identifiers that belong to a module, or to a function, (and as we will
see soon, in classes too). Generally, we like a namespace to hold “related” things, e.g. all the math
functions, or all the typical things we’d do with random numbers.
Each module has its own namespace, so we can use the same identifier name in multiple modules
without causing an identification problem.
1 # Module1.py
2
3 question = "What is the meaning of Life, the Universe, and Everything?"
4 answer = 42
1 # Module2.py
2
3 question = "What is your quest?"
4 answer = "To seek the holy grail."
We can now import both modules and access question and answer in each:
1 import module1
2 import module2
3
4 print(module1.question)
5 print(module2.question)
6 print(module1.answer)
7 print(module2.answer)
1 def f():
2 n = 7
3 print("printing n inside of f:", n)
4
5 def g():
6 n = 42
7 print("printing n inside of g:", n)
8
9 n = 11
10 print("printing n before calling f:", n)
11 f()
12 print("printing n after calling f:", n)
13 g()
14 print("printing n after calling g:", n)
The three n’s here do not collide since they are each in a different namespace — they are three names
for three different variables, just like there might be three different instances of people, all called
“Bruce”.
Namespaces permit several programmers to work on the same project without having naming
collisions.
How are namespaces, files and modules related?
Python has a convenient and simplifying one-to-one mapping, one module per file, giving rise to
one namespace. Also, Python takes the module name from the file name, and this becomes the name
of the namespace.
math.py is a filename, the module is called math, and its namespace is math. So in Python the concepts
are more or less interchangeable.
Chapter 12: Modules 209
But you will encounter other languages (e.g. C#), that allow one module to span multiple files, or
one file to have multiple namespaces, or many files to all share the same namespace. So the name
of the file doesn’t need to be the same as the namespace.
So a good idea is to try to keep the concepts distinct in your mind.
Files and directories organize where things are stored in our computer. On the other hand,
namespaces and modules are a programming concept: they help us organize how we want to group
related functions and attributes. They are not about “where” to store things, and should not have to
coincide with the file and directory structures.
So in Python, if you rename the file math.py, its module name also changes, your import statements
would need to change, and your code that refers to functions or attributes inside that namespace
would also need to change.
In other languages this is not necessarily the case. So don’t blur the concepts, just because Python
blurs them!
Python (like most other computer languages) uses precedence rules: the same name could occur in
more than one of these scopes, but the innermost, or local scope, will always take precedence over
the global scope, and the global scope always gets used in preference to the built-in scope. Let’s start
with a simple example:
1 def range(n):
2 return 123*n
3
4 print(range(10))
What gets printed? We’ve defined our own function called range, so there is now a potential
ambiguity. When we use range, do we mean our own one, or the built-in one? Using the scope
Chapter 12: Modules 210
lookup rules determines this: our own range function, not the built-in one, is called, because our
function range is in the global namespace, which takes precedence over the built-in names.
So although names likes range and min are built-in, they can be “hidden” from your use if you
choose to define your own variables or functions that reuse those names. (It is a confusing practice
to redefine built-in names — so to be a good programmer you need to understand the scope rules
and understand that you can do nasty things that will cause confusion, and then you avoid doing
them!)
Now, a slightly more complex example:
1 n = 10
2 m = 3
3 def f(n):
4 m = 7
5 return 2*n+m
6
7 print(f(5), n, m)
This prints 17 10 3. The reason is that the two variables m and n in lines 1 and 2 are outside the function
in the global namespace. Inside the function, new variables called n and m are created just for the
duration of the execution of f. These are created in the local namespace of function f. Within the
body of f, the scope lookup rules determine that we use the local variables m and n. By contrast, after
we’ve returned from f, the n and m arguments to the print function refer to the original variables
on lines 1 and 2, and these have not been changed in any way by executing function f.
Notice too that the def puts name f into the global namespace here. So it can be called on line 7.
What is the scope of the variable n on line 1? Its scope — the region in which it is visible — is lines
1, 2, 6, 7. It is hidden from view in lines 3, 4, 5 because of the local variable n.
1 import math
2 x = math.sqrt(10)
Here just the single identifier math is added to the current namespace. If you want to access one of
the functions in the module, you need to use the dot notation to get to it.
Here is a different arrangement:
The names are added directly to the current namespace, and can be used without qualification. The
name math is not itself imported, so trying to use the qualified form math.sqrt would give an error.
Then we have a convenient shorthand:
Of these three, the first method is generally preferred, even though it means a little more typing
each time. Although, we can make things shorter by importing a module under a different name:
But hey, with nice editors that do auto-completion, and fast fingers, that’s a small price!
Finally, observe this case:
1 def area(radius):
2 import math
3 return math.pi * radius * radius
4
5 x = math.sqrt(10) # This gives an error
Here we imported math, but we imported it into the local namespace of area. So the name is usable
within the function body, but not in the enclosing script, because it is not in the global namespace.
Chapter 12: Modules 212
12.10. Glossary
attribute
A variable defined inside a module (or class or instance – as we will
see later). Module attributes are accessed by using the dot operator
(.).
dot operator
The dot operator (.) permits access to attributes and functions of a
module (or attributes and methods of a class or instance – as we have
seen elsewhere).
fully qualified name
A name that is prefixed by some namespace identifier and the dot
operator, or by an instance object, e.g. math.sqrt or
tess.forward(10).
import statement
A statement which makes the objects contained in a module available for
use within another module. There are two forms for the import statement.
Using hypothetical modules named mymod1 and mymod2 each containing
functions f1 and f2, and variables v1 and v2, examples of these
two forms include:
1 import mymod1
2 from mymod2 import f1, f2, v1, v2
The second form brings the imported objects into the namespace of the
importing module, while the first form preserves a separate namespace
for the imported module, requiring mymod1.v1 to access the v1
variable from that module.
method
Function-like attribute of an object. Methods are invoked (called) on
an object using the dot operator. For example:
Chapter 12: Modules 213
1 import string
instead of
12.11. Exercises
1. Open help for the calendar module.
1. Try the following:
Chapter 12: Modules 214
1 import calendar
2 cal = calendar.TextCalendar() # Create an instance
3 cal.pryear(2012) # What happens here?
2. Observe that the week starts on Monday. An adventurous CompSci student believes that it is
better
mental chunking to have his week start on Thursday, because then there are only two working
days to the weekend, and every week has a break in the middle. Read the documentation for
TextCalendar, and see how you can help him print a calendar that suits his needs.
3. Find a function to print just the month in which your birthday occurs this year.
4. Try this:
1 d = calendar.LocaleTextCalendar(6, "SPANISH")
2 d.pryear(2012)
3
4 Try a few other languages, including one that doesn't work, and see what happens.
5. Experiment with calendar.isleap. What does it expect as an argument? What does it return as a
result? What kind of a function is this?
Make detailed notes about what you learned from these exercises.
3. Investigate the copy module. What does deepcopy do? In which exercises from last chapter would
deepcopy have come in handy?
4. Create a module named mymodule1.py. Add attributes myage set to your current age, and year set
to
the current year. Create another module named mymodule2.py. Add attributes myage set to 0, and
year set to the year you were born. Now create a file named namespace_test.py. Import both of
Chapter 12: Modules 215
When you will run namespace_test.py you will see either True or False as output depending on
whether or not you’ve already had your birthday this year.
What this example illustrates is that out different modules can both have attributes named myage
and year. Because they’re in different namespaces, they don’t clash with one another. When we
write namespace_test.py, we fully qualify exactly which variable year or myage we are referring
to.
5. Add the following statement to mymodule1.py, mymodule2.py, and namespace_test.py from the
previous
exercise:
Run namespace_test.py. What happens? Why? Now add the following to the bottom of
mymodule1.py:
1 if __name__ == "__main__":
2 print("This won't run if I'm imported.")
Run mymodule1.py and namespace_test.py again. In which case do you see the new print statement?
7. Give the Python interpreter’s response to each of the following from a continuous interpreter
session:
Chapter 12: Modules 216
1 >>> s = "If we took the bones out, it wouldn't be crunchy, would it?"
2 >>> s.split()
3 >>> type(s.split())
4 >>> s.split("o")
5 >>> s.split("i")
6 >>> "0".join(s.split("o"))
Be sure you understand why you get each result. Then apply what you have learned to fill in the
body of the function below using the split and join methods of str objects:
1 test(cleanword("what?") == "what")
2 test(cleanword("'now!'") == "now")
3 test(cleanword("?+='w-o-r-d!,@$()'") == "word")
4
5 test(has_dashdash("distance--but"))
6 test(not has_dashdash("several"))
7 test(has_dashdash("spoke--"))
8 test(has_dashdash("distance--but"))
9 test(not has_dashdash("-yo-yo-"))
10
11 test(extract_words("Now is the time! 'Now', is the time? Yes, now.") == ['now','is'\
12 ,'the','time','now','is','the','time','yes','now'])
13 test(extract_words("she tried to curtsey as she spoke--fancy") == ['she','tried','to\
14 ','curtsey','as','she','spoke','fancy'])
Chapter 12: Modules 217
15
16 test(wordcount("now", ["now","is","time","is","now","is","is"]) == 2)
17 test(wordcount("is", ["now","is","time","is","now","the","is"]) == 3)
18 test(wordcount("time", ["now","is","time","is","now","is","is"]) == 1)
19 test(wordcount("frog", ["now","is","time","is","now","is","is"]) == 0)
20
21 test(wordset(["now", "is", "time", "is", "now", "is", "is"]) == ["is", "now", "time"\
22 ])
23 test(wordset(["I", "a", "a", "is", "a", "is", "I", "am"]) == ["I", "a", "am", "is"])
24 test(wordset(["or", "a", "am", "is", "are", "be", "but", "am"]) == ["a", "am", "are"\
25 , "be", "but", "is", "or"])
26
27 test(longestword(["a", "apple", "pear", "grape"]) == 5)
28 test(longestword(["a", "am", "I", "be"]) == 2)
29 test(longestword(["this","supercalifragilisticexpialidocious"]) == 34)
30 test(longestword([ ]) == 0)
Save this module so you can use the tools it contains in future
programs.
Chapter 13: Files
13.1. About files
While a program is running, its data is stored in random access memory (RAM). RAM is fast and
inexpensive, but it is also volatile, which means that when the program ends, or the computer shuts
down, data in
RAM disappears. To make data available the next time the computer is turned on and the program
is started, it has to be written to a non-volatile storage medium, such a hard drive, usb drive, or
CD-RW.
Data on non-volatile storage media is stored in named locations on the media called files. By reading
and writing files, programs can save information between program runs.
Working with files is a lot like working with a notebook. To use a notebook, it has to be opened.
When done, it has to be closed. While the notebook is open, it can either be read from or written to.
In either case, the notebook holder knows where they are. They can read the whole notebook in its
natural order or they can skip around.
All of this applies to files as well. To open a file, we specify its name and indicate whether we want
to read or write.
Opening a file creates what we call a file handle. In this example, the variable myfile refers to the
new handle object. Our program calls methods on the handle, and this makes changes to the actual
file which
is usually located on our disk.
On line 1, the open function takes two arguments. The first is the name of the file, and the second
is the mode. Mode "w" means that we are opening the file for writing.
Chapter 13: Files 219
With mode "w", if there is no file named test.txt on the disk, it will be created. If there already is
one, it will be replaced by the file we are writing.
To put data in the file we invoke the write method on the handle, shown in lines 2, 3 and 4 above.
In bigger programs, lines 2–4 will usually be replaced by a loop that writes many more lines into
the file.
Closing the file handle (line 5) tells the system that we are done writing and makes the disk file
available for reading by other programs (or by our own program).
A handle is somewhat like a TV remote control
We’re all familiar with a remote control for a TV. We perform operations on the remote control
— switch channels, change the volume, etc. But the real action happens on the TV. So, by simple
analogy, we’d call the remote control our handle to the underlying TV.
Sometimes we want to emphasize the difference — the file handle is not the same as the file, and
the remote control is not the same as the TV. But at other times we prefer to treat them as a single
mental chunk, or abstraction, and we’ll just say “close the file”, or “flip the TV channel”.
This is a handy pattern for our toolbox. In bigger programs, we’d squeeze more extensive logic into
the body of the loop at line 8 —for example, if each line of the file contained the name and email
address of one of our friends, perhaps we’d split the line into some pieces and call a function to send
the friend a party invitation.
On line 8 we suppress the newline character that print usually appends to our strings. Why? This
is because the string already has its own newline: the readline method in line 3 returns everything
up to and including the newline character. This also explains the end-of-file detection logic: when
Chapter 13: Files 220
there are no more lines to be read from the file, readline returns an empty string — one that does
not even have a newline at the end, hence its length is 0.
Fail first …
In our sample case here, we have three lines in the file, yet we enter the loop four times. In
Python, you only learn that the file has no more lines by failure to read another line. In some other
programming languages (e.g. Pascal), things are different: there you read three lines, but you have
what is called look ahead — after reading the third line you already know that there are no more
lines in the file. You’re not even allowed to try to read the fourth line.
So the templates for working line-at-a-time in Pascal and Python are subtly different!
When you transfer your Python skills to your next computer language, be sure to ask how you’ll
know when the file has ended: is the style in the language “try, and after you fail you’ll know”, or is
it “look ahead”?
If we try to open a file that doesn’t exist, we get an error:
1 f = open("friends.txt", "r")
2 xs = f.readlines()
3 f.close()
4
5 xs.sort()
6
7 g = open("sortedfriends.txt", "w")
8 for v in xs:
9 g.write(v)
10 g.close()
The readlines method in line 2 reads all the lines and returns a list of the strings.
We could have used the template from the previous section to read each line one-at-a-time, and to
build up the list ourselves, but it is a lot easier to use the method that the Python implementors gave
us!
Chapter 13: Files 221
1 f = open("somefile.txt")
2 content = f.read()
3 f.close()
4
5 words = content.split()
6 print("There are {0} words in the file.".format(len(words)))
Notice here that we left out the "r" mode in line 1. By default, if we don’t supply the mode, Python
opens the file for reading.
Your file paths may need to be explicitly named.
In the above example, we’re assuming that the file somefile.txt is in the same directory as your
Python source code. If this is not the case, you may need to provide a full or a relative path to the
file. On Windows, a full path could look like "C:\\temp\\somefile.txt", while on a Unix system
the full path could be "/home/jimmy/somefile.txt".
We’ll return to this later in this chapter.
1 f = open("somefile.zip", "rb")
2 g = open("thecopy.zip", "wb")
3
4 while True:
5 buf = f.read(1024)
6 if len(buf) == 0:
7 break
8 g.write(buf)
9
10 f.close()
11 g.close()
There are a few new things here. In lines 1 and 2 we added a "b" to the mode to tell Python that the
files are binary rather than text files. In line 5, we see read can take an argument which tells it how
many bytes to attempt to read from the file. Here we chose to read and write up to 1024 bytes on
each iteration of the loop. When we get back an empty buffer from our attempt to read, we know
we can break out of the loop and close both the files.
If we set a breakpoint at line 6, (or print type(buf) there) we’ll see that the type of buf is bytes. We
don’t do any detailed work with bytes objects in this textbook.
13.7. An example
Many useful line-processing programs will read a text file line-at-a-time and do some minor
processing as they write the lines to an output file. They might number the lines in the output
file, or insert extra blank lines after every 60 lines to make it convenient for printing on sheets of
paper, or extract some specific columns only from each line in the source file, or only print lines
that contain a specific substring. We call this kind of program a filter.
Here is a filter that copies one file to another, omitting any lines that begin with #:
13
14 infile.close()
15 outfile.close()
The continue statement at line 9 skips over the remaining lines in the current iteration of the loop,
but the loop will still iterate. This style looks a bit contrived here, but it is often useful to say “get
the lines we’re not concerned with out of the way early, so that we have cleaner more focused logic
in the meaty part of the loop that might be written around line 11.”
Thus, if text is the empty string, the loop exits. If the first character of text is a hash mark, the
flow of execution goes to the top of the loop, ready to start processing the next line. Only if both
conditions fail do we fall through to do the processing at line 11, in this example, writing the line
into the new file.
Let’s consider one more case: suppose our original file contained empty lines. At line 6 above,
would this program find the first empty line in the file, and terminate immediately? No! Recall
that readline always includes the newline character in the string it returns. It is only when we try
to read beyond the end of the file that we get back the empty string of length 0.
13.8. Directories
Files on non-volatile storage media are organized by a set of rules known as a file system. File
systems are made up of files and directories, which are containers for both files and other directories.
When we create a new file by opening it and writing, the new file goes in the current directory
(wherever we were when we ran the program). Similarly, when we open a file for reading, Python
looks for it in the current directory.
If we want to open a file somewhere else, we have to specify the path to the file, which is the name
of the directory (or folder) where the file is located:
This (Unix) example opens a file named words that resides in a directory named dict, which resides
in share, which resides in usr, which resides in the top-level directory of the system, called /. It then
reads in each line into a list using readlines, and prints out the first 5 elements from that list.
A Windows path might be "c:/temp/words.txt" or "c:\\temp\\words.txt". Because backslashes
are used to escape things like newlines and tabs, we need to write two backslashes in a literal string
to get one! So the length of these two strings is the same!
Chapter 13: Files 224
We cannot use / or \ as part of a filename; they are reserved as a delimiter between directory and
filenames.
The file /usr/share/dict/words should exist on Unix-based systems, and contains a list of words
in alphabetical order.
1 import urllib.request
2
3 url = "https://www.ietf.org/rfc/rfc793.txt"
4 destination_filename = "rfc793.txt"
5
6 urllib.request.urlretrieve(url, destination_filename)
The urlretrieve function — just one call — could be used to download any kind of content from
the Internet.
We’ll need to get a few things right before this works:
- The resource we’re trying to fetch must exist! Check this using a browser.
- We’ll need permission to write to the destination filename, and the file will be created in the “current
directory” - i.e. the same folder that the Python program is saved in.
- If we are behind a proxy server that requires authentication, (as some students are), this may require
some more special handling to work around our proxy. Use a local resource for the purpose of this
demonstration!
Here is a slightly different example. Rather than save the web resource to our local disk, we read it
directly into a string, and return it:
1 import urllib.request
2
3 def retrieve_page(url):
4 """ Retrieve the contents of a web page.
5 The contents is converted to a string before returning it.
6 """
7 my_socket = urllib.request.urlopen(url)
8 dta = str(my_socket.read())
9 my_socket.close()
Chapter 13: Files 225
10 return dta
11
12 the_text = retrieve_page("https://www.ietf.org/rfc/rfc793.txt")
13 print(the_text)
Opening the remote url returns what we call a socket. This is a handle to our end of the connection
between our program and the remote web server. We can call read, write, and close methods on the
socket
object in much the same way as we can work with a file handle.
13.10. Glossary
delimiter
A sequence of one or more characters used to specify the boundary
between separate parts of text.
directory
A named collection of files, also called a folder. Directories can
contain files and other directories, which are referred to as
subdirectories of the directory that contains them.
file
A named entity, usually stored on a hard drive, floppy disk, or CD-ROM,
that contains a stream of characters.
file system
A method for naming, accessing, and organizing files and the data they
contain.
handle
An object in our program that is connected to an underlying resource
(e.g. a file). The file handle lets our program
manipulate/read/write/close the actual file that is on our disk.
mode
A distinct method of operation within a computer program. Files in
Python can be opened in one of four modes: read ("r"), write ("w"),
append ("a"), and read and write ("+").
non-volatile memory
Memory that can maintain its state without power. Hard drives, flash
drives, and rewritable compact disks (CD-RW) are each examples of
non-volatile memory.
path
A sequence of directory names that specifies the exact location of a
file.
Chapter 13: Files 226
text file
A file that contains printable characters organized into lines separated
by newline characters.
socket
One end of a connection allowing one to read and write information to or
from another computer.
volatile memory
Memory which requires an electrical current to maintain state. The main
memory or RAM of a computer is volatile. Information stored in RAM is
lost when the computer is turned off.
13.11. Exercises
1. Write a program that reads a file and writes out a new file with the lines in reversed order (i.e. the
first line in the old file becomes the last one in the new file.)
2. Write a program that reads a file and prints only those lines that contain the substring snake.
3. Write a program that reads a text file and produces an output file which is a copy of the file, except
the first five columns of each line contain a four digit line number, followed by a space. Start
numbering the first line in the output file at 1. Ensure that every line number is formatted to the
same width in the output file. Use one of your Python programs as test data for this exercise: your
output should be a printed and numbered listing of the Python program.
4. Write a program that undoes the numbering of the previous exercise: it should read a file with
numbered
lines and produce another file without line numbers.
Chapter 14: List Algorithms
This chapter is a bit different from what we’ve done so far: rather than introduce more new Python
syntax and features, we’re going to focus on the program development process, and some algorithms
that work with lists.
As in all parts of this book, our expectation is that you, the reader, will copy our code into your
Python environment, play and experiment, and work along with us.
Part of this chapter works with the book Alice in Wonderland and a vocabulary file. Download these
two files to your local machine at the following links. https://learnpythontherightway.com/_down-
loads/alice_in_wonderland.txt¹³ and https://learnpythontherightway.com/_downloads/vocab.txt¹⁴.
us
start with some tests:
Motivated by the fact that our tests don’t even run, let alone pass, we now write the function:
There are a some points to learn here: We’ve seen a similar algorithm in section 8.10 when we
searched for a character in a string. There we used a while loop, here we’ve used a for loop, coupled
with enumerate to extract the (i, v) pair on each iteration. There are other variants — for example,
we could have used range and made the loop run only over the indexes, or we could have used the
idiom of returning None when the item was not found in the list. But the essential similarity in all
these variations is that we test every item in the list in turn, from first to last, using the pattern of
the short-circuit eureka
traversal that we introduced earlier —that we return from the function as soon as we find the target
that we’re looking for.
Searching all items of a sequence from first to last is called a linear search. Each time we check
whether v == target we’ll call it a probe. We like to count probes as a measure of how efficient
our algorithm is, and this will be a good enough indication of how long our algorithm will take to
execute.
Linear searching is characterized by the fact that the number of probes needed to find some target
depends directly on the length of the list. So if the list becomes ten times bigger, we can expect to
wait ten times longer when searching for things. Notice too, that if we’re searching for a target that
is not present in the list, we’ll have to go all the way to the end before we can return the negative
value. So this case needs N probes, where N is the length of the list. However, if we’re searching for
a target that does exist in the list, we could be lucky and find it immediately in position 0, or we
might have to look further, perhaps even all the way to the last item. On average, when the target
is present, we’re going to need to go about halfway through the list, or N/2 probes.
We say that this search has linear performance (linear meaning straight line) because, if we were
to measure the average search times for different sizes of lists (N), and then plot a graph of time-to-
search against N, we’d get a more-or-less straight line graph.
Chapter 14: List Algorithms 229
Analysis like this is pretty meaningless for small lists — the computer is quick enough not to bother if
the list only has a handful of items. So generally, we’re interested in the scalability of our algorithms
— how do they perform if we throw bigger problems at them. Would this search be a sensible one
to use if we had a million or ten million items (perhaps the catalog of books in your local library) in
our list? What happens for really large datasets, e.g. how does Google search so brilliantly well?
Notice we were a bit lazy, and used split to create our list of words —it is easier than typing out
the list, and very convenient if you want to input a sentence into the program and turn it into a list
of words.
We now need to implement the function for which we’ve written tests, and we’ll make use of our
linear search. The basic strategy is to run through each of the words in the book, look it up in the
vocabulary, and if it is not in the vocabulary, save it into a new resulting list which we return from
the function:
Now let us look at the scalability. We have more realistic vocabulary in the text file that could be
downloaded at the beginning of this chapter. Upload the vocab.txt file to a new repl so that you
can access it from your code.
Now let us read in the file (as a single string) and split it into a list of words. For convenience, we’ll
create a function to do this for us, and test it on the vocab file.
1 def load_words_from_file(filename):
2 """ Read words from filename, return list of words. """
3 f = open(filename, "r")
4 file_content = f.read()
5 f.close()
6 wds = file_content.split()
7 return wds
8
9 bigger_vocab = load_words_from_file("vocab.txt")
10 print("There are {0} words in the vocab, starting with\n {1} "
11 .format(len(bigger_vocab), bigger_vocab[:6]))
So we’ve got a more sensible size vocabulary. Now let us load up a book, once again we’ll use the
one we downloaded at the beginning of this chapter. Loading a book is much like loading words
from a file, but
we’re going to do a little extra black magic. Books are full of punctuation, and have mixtures
of lowercase and uppercase letters. We need to clean up the contents of the book. This will
involve removing punctuation, and converting everything to the same case (lowercase, because our
vocabulary is all in lowercase). So we’ll want a more sophisticated way of converting text to words.
Chapter 14: List Algorithms 231
There is a powerful translate method available for strings. The idea is that one sets up desired
substitutions — for every character, we can give a corresponding replacement character. The
translate method will apply these replacements throughout the whole string. So here we go:
1 def text_to_words(the_text):
2 """ return a list of words with all punctuation removed,
3 and all in lowercase.
4 """
5
6 my_substitutions = the_text.maketrans(
7 # If you find any of these
8 "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!\"#$%&()*+,-./:;<=>?@[]^_`{|}~'\\",
9 # Replace them by these
10 "abcdefghijklmnopqrstuvwxyz ")
11
12 # Translate the text now.
13 cleaned_text = the_text.translate(my_substitutions)
14 wds = cleaned_text.split()
15 return wds
The translation turns all uppercase characters into lowercase, and all punctuation characters and
digits into spaces. Then, of course, split will get rid of the spaces as it breaks the text into a list of
words.
The tests pass.
Now we’re ready to read in our book:
1 def get_words_in_book(filename):
2 """ Read a book from filename, and return a list of its words. """
3 f = open(filename, "r")
4 content = f.read()
5 f.close()
6 wds = text_to_words(content)
7 return wds
8
9 book_words = get_words_in_book("alice_in_wonderland.txt")
10 print("There are {0} words in the book, the first 100 are\n{1}".
11 format(len(book_words), book_words[:100]))
Python prints the following (all on one line, we’ve cheated a bit for the textbook):
Chapter 14: List Algorithms 232
1 There are 27336 words in the book, the first 100 are
2 ['alice', 's', 'adventures', 'in', 'wonderland', 'lewis', 'carroll',
3 'chapter', 'i', 'down', 'the', 'rabbit', 'hole', 'alice', 'was',
4 'beginning', 'to', 'get', 'very', 'tired', 'of', 'sitting', 'by',
5 'her', 'sister', 'on', 'the', 'bank', 'and', 'of', 'having',
6 'nothing', 'to', 'do', 'once', 'or', 'twice', 'she', 'had',
7 'peeped', 'into', 'the', 'book', 'her', 'sister', 'was', 'reading',
8 'but', 'it', 'had', 'no', 'pictures', 'or', 'conversations', 'in',
9 'it', 'and', 'what', 'is', 'the', 'use', 'of', 'a', 'book',
10 'thought', 'alice', 'without', 'pictures', 'or', 'conversation',
11 'so', 'she', 'was', 'considering', 'in', 'her', 'own', 'mind',
12 'as', 'well', 'as', 'she', 'could', 'for', 'the', 'hot', 'day',
13 'made', 'her', 'feel', 'very', 'sleepy', 'and', 'stupid',
14 'whether', 'the', 'pleasure', 'of', 'making', 'a']
Well now we have all the pieces ready. Let us see what words in this book are not in the vocabulary:
We wait a considerable time now, something like a minute, before Python finally works its way
through this, and prints a list of 3398 words in the book that are not in the vocabulary. Mmm… This
is not particularly
scaleable. For a vocabulary that is twenty times larger (you’ll often find school dictionaries with
300 000 words, for example), and longer books, this is going to be slow. So let us make some timing
measurements
while we think about how we can improve this in the next section.
1 import time
2
3 t0 = time.process_time()
4 missing_words = find_unknown_words(bigger_vocab, book_words)
5 t1 = time.process_time()
6 print("There are {0} unknown words.".format(len(missing_words)))
7 print("That took {0:.4f} seconds.".format(t1-t0))
We get the results and some timing that we can refer back to later:
1 xs = [2,3,5,7,11,13,17,23,29,31,37,43,47,53]
2 test(search_binary(xs, 20) == -1)
3 test(search_binary(xs, 99) == -1)
4 test(search_binary(xs, 1) == -1)
5 for (i, v) in enumerate(xs):
6 test(search_binary(xs, v) == i)
Even our test cases are interesting this time: notice that we start with items not in the list and look
at boundary conditions — in the middle of the list, less than all items in the list, bigger than the
biggest.
Then we use a loop to use every list item as a target, and to confirm that our binary search returns
the corresponding index of that item in the list.
It is useful to think about having a region-of-interest (ROI) within the list being searched. This ROI
will be the portion of the list in which it is still possible that our target might be found. Our algorithm
will start with the ROI set to all the items in the list. On the first probe in the middle of the ROI,
there are three possible outcomes: either we find the target, or we learn that we can discard the top
half
of the ROI, or we learn that we can discard the bottom half of the ROI. And we keep doing this
repeatedly, until we find our target, or until we end up with no more items in our region of interest.
We can code this as follows:
Chapter 14: List Algorithms 234
The region of interest is represented by two variables, a lower bound lb and an upper bound ub. It is
important to be precise about what values these indexes have. We’ll make lb hold the index of the
first
item in the ROI, and make ub hold the index just beyond the last item of interest. So these semantics
are similar to a Python slice semantics: the region of interest is exactly the slice xs[lb:ub]. (The
algorithm never actually takes any array slices!)
With this code in place, our tests pass. Great. Now if we substitute a call to this search algorithm
instead of calling the search_linear in find_unknown_words, can we improve our performance?
Let’s do that, and
again run this test:
1 t0 = time.process_time()
2 missing_words = find_unknown_words(bigger_vocab, book_words)
3 t1 = time.process_time()
4 print("There are {0} unknown words.".format(len(missing_words)))
5 print("That took {0:.4f} seconds.".format(t1-t0))
Why is this binary search so much faster than the linear search? If we uncomment the print statement
on lines 15 and 16, we’ll get a trace of the probes done during a search. Let’s go ahead, and try that:
Here we see that finding the target word “magic” needed just 14 probes before it was found at index
10328. The important thing is that each probe halves (with some truncation) the remaining region
of interest. By
contrast, the linear search would have needed 10329 probes to find the same target word.
The word binary means two. Binary search gets its name from the fact that each probe splits the list
into two pieces and discards the one half from the region of interest.
The beauty of the algorithm is that we could double the size of the vocabulary, and it would only
need one more probe! And after another doubling, just another one probe. So as the vocabulary gets
bigger, this
algorithm’s performance becomes even more impressive.
Can we put a formula to this? If our list size is N, what is the biggest number of probes k we could
need? The maths is a bit easier if we turn the question around: how big a list N could we deal with,
given that we
were only allowed to make k probes?
With 1 probe, we can only search a list of size 1. With two probes we could cope with lists up to size
3 - (test the middle item with the first probe, then test either the left or right sublist with the second
probe). With one more probe, we could cope with 7 items (the middle item, and two sublists of size 3).
With four probes, we can search 15 items, and 5 probes lets us search up to 31 items. So the general
relationship is given by the formula
Chapter 14: List Algorithms 236
1 N = 2 ** k - 1
where k is the number of probes we’re allowed to make, and N is the maximum size of the list that
can be searched in that many probes. This function is exponential in k (because k occurs in the
exponent part).
If we wanted to turn the formula around and solve for k in terms of N, we need to move the constant
1 to the other side, and take a log (base 2) on each side. (The log is the inverse of an exponent.) So
the formula
for k in terms of N is now:
The square-only-on-top brackets are called ceiling brackets: this means that you must round the
number up to the next whole integer.
Let us try this on a calculator, or in Python, which is the mother of all calculators: suppose I have
1000 elements to be searched, what is the maximum number of probes I’ll need? (There is a pesky
+1 in the formula, so let us not forget to add it on…):
Telling us that we’ll need 9.96 probes maximum, to search 1000 items is not quite what we want. We
forgot to take the ceiling. The ceil function in the math module does exactly this. So more accurately,
now:
This tells us that searching 1000 items needs 10 probes. (Well technically, with 10 probes we can
search exactly 1023 items, but the easy and useful stuff to remember here is that “1000 items needs
10 probes, a million needs 20 probes, and a billion items only needs 30 probes”).
You will rarely encounter algorithms that scale to large datasets as beautifully as binary search does!
Chapter 14: List Algorithms 237
1 test(remove_adjacent_dups([1,2,3,3,3,3,5,6,9,9]) == [1,2,3,5,6,9])
2 test(remove_adjacent_dups([]) == [])
3 test(remove_adjacent_dups(["a", "big", "big", "bite", "dog"]) ==
4 ["a", "big", "bite", "dog"])
The algorithm is easy and efficient. We simply have to remember the most recent item that was
inserted into the result, and avoid inserting it again:
1 def remove_adjacent_dups(xs):
2 """ Return a new list in which all adjacent
3 duplicates from xs have been removed.
4 """
5 result = []
6 most_recent_elem = None
7 for e in xs:
8 if e != most_recent_elem:
9 result.append(e)
10 most_recent_elem = e
11
12 return result
The amount of work done in this algorithm is linear — each item in xs causes the loop to execute
exactly once, and there are no nested loops. So doubling the number of elements in xs should cause
this function to run twice as long: the relationship between the size of the list and the time to run
will be graphed as a straight (linear) line.
Let us go back now to our analysis of Alice in Wonderland. Before checking the words in the book
against the
vocabulary, we’ll sort those words into order, and eliminate duplicates. So our new code looks like
this:
Chapter 14: List Algorithms 238
1 all_words = get_words_in_book("alice_in_wonderland.txt")
2 all_words.sort()
3 book_words = remove_adjacent_dups(all_words)
4 print("There are {0} words in the book. Only {1} are unique.".
5 format(len(all_words), len(book_words)))
6 print("The first 100 words are\n{0}".
7 format(book_words[:100]))
1 There are 27336 words in the book. Only 2570 are unique.
2 The first 100 words are
3 ['_i_', 'a', 'abide', 'able', 'about', 'above', 'absence', 'absurd',
4 'acceptance', 'accident', 'accidentally', 'account', 'accounting',
5 'accounts', 'accusation', 'accustomed', 'ache', 'across', 'act',
6 'actually', 'ada', 'added', 'adding', 'addressed', 'addressing',
7 'adjourn', 'adoption', 'advance', 'advantage', 'adventures',
8 'advice', 'advisable', 'advise', 'affair', 'affectionately',
9 'afford', 'afore', 'afraid', 'after', 'afterwards', 'again',
10 'against', 'age', 'ago', 'agony', 'agree', 'ah', 'ahem', 'air',
11 'airs', 'alarm', 'alarmed', 'alas', 'alice', 'alive', 'all',
12 'allow', 'almost', 'alone', 'along', 'aloud', 'already', 'also',
13 'altered', 'alternately', 'altogether', 'always', 'am', 'ambition',
14 'among', 'an', 'ancient', 'and', 'anger', 'angrily', 'angry',
15 'animal', 'animals', 'ann', 'annoy', 'annoyed', 'another',
16 'answer', 'answered', 'answers', 'antipathies', 'anxious',
17 'anxiously', 'any', 'anything', 'anywhere', 'appealed', 'appear',
18 'appearance', 'appeared', 'appearing', 'applause', 'apple',
19 'apples', 'arch']
Lewis Carroll was able to write a classic piece of literature using only 2570 different words!
But this doesn’t take advantage of the fact that the two lists are already sorted, and is going to have
poor scalability and performance for very large lists.
Lets get some tests together first:
1 xs = [1,3,5,7,9,11,13,15,17,19]
2 ys = [4,8,12,16,20,24]
3 zs = xs+ys
4 zs.sort()
5 test(merge(xs, []) == xs)
6 test(merge([], ys) == ys)
7 test(merge([], []) == [])
8 test(merge(xs, ys) == zs)
9 test(merge([1,2,3], [3,4,5]) == [1,2,3,3,4,5])
10 test(merge(["a", "big", "cat"], ["big", "bite", "dog"]) ==
11 ["a", "big", "big", "bite", "cat", "dog"])
The algorithm works as follows: we create a result list, and keep two indexes, one into each list (lines
3-5). On each iteration of the loop, whichever list item is smaller is copied to the result list, and that
list’s index is advanced. As soon as either index reaches the end of its list, we copy all the remaining
items from the other list into the result, which we return.
In the previous section we sorted the words from the book, and eliminated duplicates. Our
vocabulary is also sorted. So third case above — find all items in the second list that are not in
the first list, would be another way to implement find_unknown_words. Instead of searching for
every word in the dictionary (either by linear or binary search), why not use a variant of the merge
to return the words that occur in the book, but not in the vocabulary.
Chapter 14: List Algorithms 241
Let’s review what we’ve done. We started with a word-by-word linear lookup in the vocabulary that
ran in about 50 seconds. We implemented a clever binary search, and got that down to 0.22 seconds,
more than 200
times faster. But then we did something even better: we sorted the words from the book, eliminated
duplicates, and used a merging pattern to find words from the book that were not in the dictionary.
This was about five times faster than even the binary lookup algorithm. At the end of the chapter
our algorithm is more than a 1000 times faster than our first attempt!
That is what we can call a good day at the office!
Chapter 14: List Algorithms 242
Please try this yourself, and find a few more solutions by hand.
We’d like to write a program to find solutions to this puzzle. In fact, the puzzle generalizes to placing
N queens on an NxN board, so we’re going to think about the general case, not just the 8x8 case.
Perhaps we
can find solutions for 12 queens on a 12x12 board, or 20 queens on a 20x20 board.
How do we approach a complex problem like this? A good starting point is to think about our data
structures — how exactly do we plan to represent the state of the chessboard and its queens in our
program? Once we have some handle on what our puzzle is going to look like in memory, we can
begin to think about the functions and logic we’ll need to solve the puzzle, i.e. how do we put another
queen onto the board
somewhere, and to check whether it clashes with any of the queens already on the board.
The steps of finding a good representation, and then finding a good algorithm to operate on the data
cannot always be done independently of each other. As you think about the operations you require,
you may want
to change or reorganize the data somewhat to make it easier to do the operations you need.
This relationship between algorithms and data was elegantly expressed in the title of a book
Algorithms + Data Structures = Programs, written by one of the pioneers in Computer Science,
Chapter 14: List Algorithms 243
Our state for the solution above could then have this data
representation:
1 bd1 = [[0,0,0,1,0,0,0,0],
2 [0,0,0,0,0,0,1,0],
3 [0,0,1,0,0,0,0,0],
4 [0,0,0,0,0,0,0,1],
5 [0,1,0,0,0,0,0,0],
6 [0,0,0,0,1,0,0,0],
7 [1,0,0,0,0,0,0,0],
8 [0,0,0,0,0,1,0,0]]
You should also be able to see how the empty board would be
represented, and you should start to imagine what operations or
changes you’d need to make to the data to place another queen
somewhere on the board.
1 bd4 = [6, 4, 2, 0, 5, 7, 1, 3]
This will be what we’ll use, let’s see where that takes us.
Let us now take some grand insight into the problem. Do you think it is a coincidence that there
are no repeated numbers in the solution? The solution [6,4,2,0,5,7,1,3] contains the numbers
0,1,2,3,4,5,6,7, but none are duplicated! Could other solutions contain duplicate numbers, or
not?
A little thinking should convince you that there can never be duplicate numbers in a solution: the
numbers represent the row on which the queen is placed, and because we are never permitted to
put two queens in the
same row, no solution will ever have duplicate row numbers in it.
Our key insight
In our representation, any solution to the N queens problem musttherefore be a permutation of the
numbers [0 .. N-1].
Note that not all permutations are solutions. For example, [0,1,2,3,4,5,6,7] has all queens on the
same diagonal.
Wow, we seem to be making progress on this problem merely by thinking, rather than coding!
Our algorithm should start taking shape now. We can start with the list [0..N-1], generate various
permutations of that list, and check each permutation to see if it has any clashes (queens that are on
the same diagonal). If it has no clashes, it is a solution, and we can print it.
Let us be precise and clear on this issue: if we only use permutations of the rows, and we’re using
our compact representation, no queens can clash on either rows or columns, and we don’t even have
to concern
ourselves with those cases. So the only clashes we need to test for are clashes on the diagonals.
It sounds like a useful function will be one that can test if two queens share a diagonal. Each queen
is on some (x,y) position. So does the queen at (5,2) share a diagonal with the one at (2,0)? Does (5,2)
clash
with (3,0)?
Chapter 14: List Algorithms 245
1 test(not share_diagonal(5,2,2,0))
2 test(share_diagonal(5,2,3,0))
3 test(share_diagonal(5,2,4,3))
4 test(share_diagonal(5,2,4,1))
A little geometry will help us here. A diagonal has a slope of either 1 or -1. The question we really
want to ask is is their distance between them the same in the x and the y direction? If it is, they share
a
diagonal. Because diagonals can be to the left or right, it will make sense for this program to use the
absolute distance in each direction:
If you copy the code and run it, you’ll be happy to learn that the tests pass!
Now let’s consider how we construct a solution by hand. We’ll put a queen somewhere in the first
column, then place one in the second column, only if it does not clash with the one already on the
board. And
then we’ll put a third one on, checking it against the two queens already to its left. When we consider
the queen on column 6, we’ll need to check for clashes against those in all the columns to its left, i.e.
in columns 0,1,2,3,4,5.
So the next building block is a function that, given a partially completed puzzle, can check whether
the queen at column c clashes with any of the queens to its left, at columns 0,1,2,..c-1:
Finally, we’re going to give our program one of our permutations — i.e. all queens placed somewhere,
one on each row, one on each column. But does the permutation have any diagonal clashes?
1 def has_clashes(the_board):
2 """ Determine whether we have any queens clashing on the diagonals.
3 We're assuming here that the_board is a permutation of column
4 numbers, so we're not explicitly checking row or column clashes.
5 """
6 for col in range(1,len(the_board)):
7 if col_clashes(the_board, col):
8 return True
9 return False
Summary of what we’ve done so far: we now have a powerful function called has_clashes that can
tell if a configuration is a solution to the queens puzzle. Let’s get on now with generating lots of
permutations
and finding solutions!
Of course we know there are N! permutations of N things, so we can get an early idea of how long
it would take to search all of them for all solutions. Not too long at all, actually -8! is only 40320
different
cases to check out. This is vastly better than starting with 64 places to put eight queens. If you do the
sums for how many ways can you choose 8 of the 64 squares for your queens, the formula (called
N choose k
where you’re choosing k=8 squares of the available N=64) yields a whopping 4426165368, obtained
from (64! / (8! x 56!)).
So our earlier key insight — that we only need to consider permutations — has reduced what we call
the problem space from about 4.4 billion cases to just 40320!
We’re not even going to explore all those, however. When we introduced the random number
module, we learned that it had a shuffle method that randomly permuted a list of items. So we’re
going to write a “random”
algorithm to find solutions to the N queens problem. We’ll begin with the permutation
[0,1,2,3,4,5,6,7] and we’ll repeatedly shuffle the list, and test each to see if it works! Along
the way we’ll count how many attempts we need before we find each solution, and we’ll find 10
solutions (we could hit the same solution more than once, because shuffle is random!):
1 def main():
2 import random
3 rng = random.Random() # Instantiate a generator
4
5 bd = list(range(8)) # Generate the initial permutation
6 num_found = 0
7 tries = 0
8 while num_found < 10:
9 rng.shuffle(bd)
10 tries += 1
11 if not has_clashes(bd):
12 print("Found solution {0} in {1} tries.".format(bd, tries))
13 tries = 0
14 num_found += 1
15
16 main()
Here is an interesting fact. On an 8x8 board, there are known to be 92 different solutions to this
puzzle. We are randomly picking one of 40320 possible permutations of our representation. So our
chances of picking a
solution on each try are 92/40320. Put another way, on average we’ll need 40320/92 tries — about
438.26 — before we stumble across a solution. The number of tries we printed looks like our
experimental data agrees quite nicely with our theory!
Save this code for later.
In the chapter on PyGame we plan to write a module to draw the board with its queens, and integrate
that module with this code.
14.10. Glossary
binary search
A famous algorithm that searches for a target in a sorted list. Each
probe in the list allows us to discard half the remaining items, so the
algorithm is very efficient.
linear
Relating to a straight line. Here, we talk about graphing how the time
taken by an algorithm depends on the size of the data it is processing.
Linear algorithms have straight-line graphs that can describe this
relationship.
linear search
A search that probes each item in a list or sequence, from first, until
it finds what it is looking for. It is used for searching for a target
in unordered lists of items.
Merge algorithm
An efficient algorithm that merges two already sorted lists, to produce
a sorted list result. The merge algorithm is really a pattern of
Chapter 14: List Algorithms 249
computation that can be adapted and reused for various other scenarios,
such as finding words that are in a book, but not in a vocabulary.
probe
Each time we take a look when searching for an item is called a probe.
In our chapter on <span class=”title-ref”>Iteration</span> we also
played a guessing game where the computer tried to guess the user’s
secret number. Each of those tries would also be called a probe.
test-driven development (TDD)
A software development practice which arrives at a desired feature
through a series of small, iterative steps motivated by automated tests
which are written first that express increasing refinements of the
desired feature. (see the Wikipedia article on Test-driven
development¹⁵ for
more information.)
14.11. Exercises
1. The section in this chapter called Alice in Wonderland, again started with the observation that
the merge
algorithm uses a pattern that can be reused in other situations. Adapt the merge algorithm to write
each of these functions, as was suggested there:
2. Modify the queens program to solve some boards of size 4, 12, and 16. What is the maximum size
puzzle you
¹⁵http://en.wikipedia.org/wiki/Test_driven_development
Chapter 14: List Algorithms 250
3. Adapt the queens program so that we keep a list of solutions that have already printed, so that we
don’t
print the same solution more than once.
4. Chess boards are symmetric: if we have a solution to the queens problem, its mirror solution —
either
flipping the board on the X or in the Y axis, is also a solution. And giving the board a 90
degree, 180 degree, or 270 degree rotation is also a solution. In some sense, solutions that are just
mirror images or rotations of other solutions — in the same family —are less interesting than
the unique “core cases”. Of the 92 solutions for the 8 queens problem, there are only 12 unique
families if you take rotations and mirror images into account. Wikipedia has some fascinating stuff
about this.
[[0,4,7,5,2,6,1,3],[7,1,3,0,6,4,2,5],
[4,6,1,5,2,0,3,7],[2,5,3,1,7,4,6,0],
[3,1,6,2,5,7,4,0],[0,6,4,7,1,3,5,2],
[7,3,0,2,5,1,6,4],[5,2,4,6,0,3,1,7]]
5. Every week a computer scientist buys four lotto tickets. She always chooses the same prime
numbers, with
Chapter 14: List Algorithms 251
the hope that if she ever hits the jackpot, she will be able to go onto TV and Facebook and tell
everyone her secret. This will suddenly create widespread public interest in prime numbers, and
will be the trigger event that ushers in a new age of enlightenment. She represents her weekly
tickets in
Python as a list of lists:
1. Each lotto draw takes six random balls, numbered from 1 to 49.
Write a function to return a lotto draw.
test(lotto_match([42,4,7,11,1,13], [2,5,7,11,13,17]) == 3)
1. Count how many draws are needed until one of the computer
scientist’s tickets has at least 3 correct picks. Try the
experiment twenty times, and average out the number of draws
needed.
2. How many draws are needed, on average, before she gets at
least 4 picks correct?
3. How many draws are needed, on average, before she gets at
least 5 correct? (Hint: this might take a while. It would be
nice if you could print some dots, like a progress bar, to
show when each of the 20 experiments has completed.)
6. Read Alice in Wonderland. You can read the plain text version we have with this textbook, or if
you
have e-book reader software on your PC, or a Kindle, iPhone, Android, etc. you’ll be able to find a
suitable version for your device at http://www.gutenberg.org. They also have html and pdf versions,
with pictures, and thousands of other classic books!
Chapter 15: Classes and Objects —
the Basics
15.1. Object-oriented programming
Python is an object-oriented programming language, which means that it provides features that
support object-oriented programming¹⁶ (OOP).
Object-oriented programming has its roots in the 1960s, but it wasn’t until the mid 1980s that it
became the main programming paradigm¹⁷ used in the creation of new software. It was developed
as a way to handle the rapidly increasing size and complexity of software systems, and to make it
easier to modify these large and complex systems over time.
Up to now, most of the programs we have been writing use a procedural programming¹⁸ paradigm.
In procedural programming the focus is on writing functions or
procedures which operate on data. In object-oriented programming the focus is on the creation of
objects which contain both data and functionality together. (We have seen turtle objects, string
objects,
and random number generators, to name a few places where we’ve already worked with objects.)
Usually, each object definition corresponds to some object or concept in the real world, and the
functions that operate on that object correspond to the ways real-world objects interact.
point falls
within a given rectangle or circle. We’ll shortly see how we can organize these together with the
data.
A natural way to represent a point in Python is with two numeric values. The question, then, is how
to group these two values into a compound object. The quick and dirty solution is to use a tuple,
and for some
applications that might be a good choice.
An alternative is to define a new class. This approach involves a bit more effort, but it has advantages
that will be apparent soon. We’ll want our points to each have an x and a y attribute, so our first
class definition looks like this:
1 class Point:
2 """ Point class represents and manipulates x,y coords. """
3
4 def __init__(self):
5 """ Create a new point at the origin """
6 self.x = 0
7 self.y = 0
Class definitions can appear anywhere in a program, but they are usually near the beginning (after
the import statements). Some programmers and languages prefer to put every class in a module of
its own — we won’t do that here. The syntax rules for a class definition are the same as for other
compound statements. There is a header which begins with the keyword, class, followed by the
name of the class, and ending with a
colon. Indentation levels tell us where the class ends.
If the first line after the class header is a string, it becomes the docstring of the class, and will be
recognized by various tools. (This is also the way docstrings work in functions.)
Every class should have a method with the special name __init__. This initializer method is
automatically called whenever a new instance of Point is created. It gives the programmer the
opportunity to set up the attributes required within the new instance by giving them their initial
state/values. The self parameter (we could choose any other name, but self is the convention) is
automatically set to reference the newly created object that needs to be initialized.
So let’s use our new Point class now:
1 0 0 0 0
because during the initialization of the objects, we created two attributes called x and y for each,
and gave them both the value 0.
This should look familiar — we’ve used classes before to create more than one object:
The variables p and q are assigned references to two new Point objects. A function like Turtle or
Point that creates a new object instance is called a constructor, and every class automatically
provides a constructor function which is named the same as the class.
It may be helpful to think of a class as a factory for making objects. The class itself isn’t an instance
of a point, but it contains the machinery to make point instances. Every time we call the constructor,
we’re asking the factory to make us a new object. As the object comes off the production line, its
initialization method is executed to get the object properly set up with its factory default settings.
The combined process of “make me a new object” and “get its settings initialized to the factory
default settings” is called instantiation.
15.3. Attributes
Like real world objects, object instances have both attributes and methods.
We can modify the attributes in an instance using dot notation:
1 >>> p.x = 3
2 >>> p.y = 4
Both modules and instances create their own namespaces, and the syntax for accessing names
contained in each, called attributes, is the same. In this case the attribute we are selecting is a
data item from an
instance.
The following state diagram shows the result of these assignments:
The variable p refers to a Point object, which contains two attributes. Each attribute refers to a
number.
We can access the value of an attribute using the same syntax:
Chapter 15: Classes and Objects — the Basics 256
1 >>> print(p.y)
2 4
3 >>> x = p.x
4 >>> print(x)
5 3
The expression p.x means, “Go to the object p refers to and get the value of x”. In this case, we assign
that value to a variable named x. There is no conflict between the variable x (in the global
namespace here) and the attribute x (in the namespace belonging to the instance). The purpose of
dot notation is to fully qualify which variable we are referring to unambiguously.
We can use dot notation as part of any expression, so the following statements are legal:
The first line outputs (x=3, y=4). The second line calculates the
value 25.
1 p = Point()
2 p.x = 7
3 p.y = 6
We can make our class constructor more general by placing extra parameters into the __init__-
method, as shown in this example:
1 class Point:
2 """ Point class represents and manipulates x,y coords. """
3
4 def __init__(self, x=0, y=0):
5 """ Create a new point at x, y """
6 self.x = x
7 self.y = y
8
9 # Other statements outside the class continue below here.
The x and y parameters here are both optional. If the caller does not supply arguments, they’ll get
the default values of 0. Here is our improved class in action:
Chapter 15: Classes and Objects — the Basics 257
1 >>> p = Point(4, 2)
2 >>> q = Point(6, 3)
3 >>> r = Point() # r represents the origin (0, 0)
4 >>> print(p.x, q.y, r.x)
5 4 3 0
Technically speaking …
If we are really fussy, we would argue that the __init__ method’s docstring is inaccurate. __init_-
_ doesn’t create the object (i.e. set aside memory for it), — it just initializes the object to its
factory-default settings after its creation.
But tools like PyScripter understand that instantiation — creation and initialization — happen
together, and they choose to display the initializer’s docstring as the tooltip to guide the programmer
that calls the class constructor.
So we’re writing the docstring so that it makes the most sense when it pops up to help the
programmer who is using our Point class:
and to our thinking. We can group together the sensible operations, and the kinds of data they apply
to, and each instance of the class can have its own state.
A method behaves like a function but it is invoked on a specific instance, e.g. tess.right(90). Like
a data attribute, methods are accessed using dot notation.
Let’s add another method, distance_from_origin, to see better how methods work:
1 class Point:
2 """ Create a new Point, at coordinates x, y """
3
4 def __init__(self, x=0, y=0):
5 """ Create a new point at x, y """
6 self.x = x
7 self.y = y
8
9 def distance_from_origin(self):
10 """ Compute my distance from the origin """
11 return ((self.x ** 2) + (self.y ** 2)) ** 0.5
Let’s create a few point instances, look at their attributes, and call our new method on them: (We
must run our program first, to make our Point class available to the interpreter.)
1 >>> p = Point(3, 4)
2 >>> p.x
3 3
4 >>> p.y
5 4
6 >>> p.distance_from_origin()
7 5.0
8 >>> q = Point(5, 12)
9 >>> q.x
10 5
11 >>> q.y
12 12
13 >>> q.distance_from_origin()
14 13.0
15 >>> r = Point()
16 >>> r.x
17 0
18 >>> r.y
19 0
20 >>> r.distance_from_origin()
21 0.0
Chapter 15: Classes and Objects — the Basics 259
When defining a method, the first parameter refers to the instance being manipulated. As already
noted, it is customary to name this parameter self.
Notice that the caller of distance_from_origin does not explicitly supply an argument to match the
self parameter — this is done for us, behind our back.
1 def print_point(pt):
2 print("({0}, {1})".format(pt.x, pt.y))
print_point takes a point as an argument and formats the output in whichever way we choose. If
we call print_point(p) with point p as defined previously, the output is (3, 4).
1 class Point:
2 # ...
3
4 def to_string(self):
5 return "({0}, {1})".format(self.x, self.y)
1 >>> p = Point(3, 4)
2 >>> print(p.to_string())
3 (3, 4)
But don’t we already have a str type converter that can turn our object into a string? Yes!
And doesn’t print automatically use this when printing things? Yes again! But these automatic
mechanisms do not
yet do exactly what we want:
1 >>> str(p)
2 '<__main__.Point object at 0x01F9AA10>'
3 >>> print(p)
4 '<__main__.Point object at 0x01F9AA10>'
Python has a clever trick up its sleeve to fix this. If we call our new method __str__ instead of
to_string, the Python interpreter will use our code whenever it needs to convert a Point to a string.
Let’s re-do this again, now:
1 class Point:
2 # ...
3
4 def __str__(self): # All we have done is renamed the method
5 return "({0}, {1})".format(self.x, self.y)
1 >>> str(p) # Python now uses the __str__ method that we wrote.
2 (3, 4)
3 >>> print(p)
4 (3, 4)
1 >>> p = Point(3, 4)
2 >>> q = Point(5, 12)
3 >>> r = midpoint(p, q)
4 >>> r
5 (4.0, 8.0)
Now let us do this as a method instead. Suppose we have a point object, and wish to find the midpoint
halfway between it and some other target point:
1 class Point:
2 # ...
3
4 def halfway(self, target):
5 """ Return the halfway point between myself and the target """
6 mx = (self.x + target.x)/2
7 my = (self.y + target.y)/2
8 return Point(mx, my)
This method is identical to the function, aside from some renaming. It’s usage might be like this:
1 >>> p = Point(3, 4)
2 >>> q = Point(5, 12)
3 >>> r = p.halfway(q)
4 >>> r
5 (4.0, 8.0)
While this example assigns each point to a variable, this need not be done. Just as function calls are
composable, method calls and object instantiation are also composable, leading to this alternative
that uses
no variables:
Chapter 15: Classes and Objects — the Basics 262
15.11. Glossary
attribute
One of the named data items that makes up an instance.
class
A user-defined compound type. A class can also be thought of as a
template for the objects that are instances of it. (The iPhone is a
class. By December 2010, estimates are that 50 million instances had
been sold!)
constructor
Every class has a “factory”, called by the same name as the class, for
making new instances. If the class has an initializer method, this
method is used to get the attributes (i.e. the state) of the new object
properly set up.
initializer method
A special method in Python (called __init__) that is invoked
automatically to set a newly created object’s attributes to their
initial (factory-default) state.
instance
An object whose type is of some class. Instance and object are used
interchangeably.
instantiate
To create an instance of a class, and to run its initializer.
method
A function that is defined inside a class definition and is invoked on
instances of that class.
object
A compound data type that is often used to model a thing or concept in
the real world. It bundles together the data and the operations that are
relevant for that kind of data. Instance and object are used
interchangeably.
object-oriented programming
A powerful style of programming in which data and the operations that
manipulate it are organized into objects.
object-oriented language
A language that provides features, such as user-defined classes and
inheritance, that facilitate object-oriented programming.
Chapter 15: Classes and Objects — the Basics 264
15.12. Exercises
1. Rewrite the distance function from the chapter titled Fruitful functions so that it takes two
Points as parameters instead of four numbers.
2. Add a method reflect_x to Point which returns a new Point, one which is the reflection of the
point
about the x-axis. For example, Point(3, 5).reflect_x() is (3, -5)
3. Add a method slope_from_origin which returns the slope of the line joining the origin to the
point. For
example:
This tells us that the equation of the line joining the two points is “y = 2x + 3”. When will this method
fail?
5. Given four points that fall on the circumference of a circle, find the midpoint of the circle. When
will
this function fail?
Hint: You must know how to solve the geometry problem before you think of going anywhere near
programming. You cannot program a solution to a problem if you don’t understand what you want
the
computer to do!
Chapter 15: Classes and Objects — the Basics 265
6. Create a new class, SMS_store. The class will instantiate SMS_store objects, similar to an inbox
or
outbox on a cellphone:
1 my_inbox = SMS_store()
This store can hold multiple SMS messages (i.e. its internal state will just be a list of messages). Each
message will be represented as a tuple:
Write the class, create a message store object, write tests for these methods, and implement the
methods.
Chapter 16: Classes and Objects —
Digging a little deeper
16.1. Rectangles
Let’s say that we want a class to represent a rectangle which is located somewhere in the XY plane.
The question is, what information do we have to provide in order to specify such a rectangle? To
keep things simple, assume that the rectangle is oriented either vertically or horizontally, never at
an angle.
There are a few possibilities: we could specify the center of the rectangle (two coordinates) and its
size (width and height); or we could specify one of the corners and the size; or we could specify two
opposing corners. A conventional choice is to specify the upper-left corner of the rectangle, and the
size.
Again, we’ll define a new class, and provide it with an initializer and a string converter method:
1 class Rectangle:
2 """ A class to manufacture rectangle objects """
3
4 def __init__(self, posn, w, h):
5 """ Initialize rectangle at posn, with width w, height h """
6 self.corner = posn
7 self.width = w
8 self.height = h
9
10 def __str__(self):
11 return "({0}, {1}, {2})"
12 .format(self.corner, self.width, self.height)
13
14 box = Rectangle(Point(0, 0), 100, 200)
15 bomb = Rectangle(Point(100, 80), 5, 10) # In my video game
16 print("box: ", box)
17 print("bomb: ", bomb)
To specify the upper-left corner, we have embedded a Point object (as we used it in the previous
chapter) within our new Rectangle object! We create two new Rectangle objects, and then print
them producing:
Chapter 16: Classes and Objects — Digging a little deeper 267
The dot operator composes. The expression box.corner.x means, “Go to the object that box refers
to and select its attribute named corner, then go to that object and select its attribute named x”.
The figure shows the state of this object:
1 box.width += 50
2 box.height += 100
Of course, we’d probably like to provide a method to encapsulate this inside the class. We will also
provide another method to move the position of the rectangle elsewhere:
1 class Rectangle:
2 # ...
3
4 def grow(self, delta_width, delta_height):
5 """ Grow (or shrink) this object by the deltas """
6 self.width += delta_width
7 self.height += delta_height
8
9 def move(self, dx, dy):
Chapter 16: Classes and Objects — Digging a little deeper 268
16.3. Sameness
The meaning of the word “same” seems perfectly clear until we give it some thought, and then we
realize there is more to it than we initially expected.
For example, if we say, “Alice and Bob have the same car”, we mean that her car and his are the
same make and model, but that they are two different cars. If we say, “Alice and Bob have the same
mother”, we mean
that her mother and his are the same person.
When we talk about objects, there is a similar ambiguity. For example, if two Points are the same,
does that mean they contain the same data (coordinates) or that they are actually the same object?
We’ve already seen the is operator in the chapter on lists, where we talked about aliases: it allows
us to find out if two references refer to the same object:
1 >>> p1 = Point(3, 4)
2 >>> p2 = Point(3, 4)
3 >>> p1 is p2
4 False
Even though p1 and p2 contain the same coordinates, they are not the same object. If we assign p1
to p3, then the two variables are aliases of the same object:
Chapter 16: Classes and Objects — Digging a little deeper 269
1 >>> p3 = p1
2 >>> p1 is p3
3 True
This type of equality is called shallow equality because it compares only the references, not the
contents of the objects.
To compare the contents of the objects — deep equality —we can write a function called same_-
coordinates:
Now if we create two different objects that contain the same data, we can use same_point to find
out if they represent points with the same coordinates.
1 >>> p1 = Point(3, 4)
2 >>> p2 = Point(3, 4)
3 >>> same_coordinates(p1, p2)
4 True
Of course, if the two variables refer to the same object, they have both shallow and deep equality.
Beware of ==
“When I use a word,” Humpty Dumpty said, in a rather scornful tone, “it means just what I choose
it to mean — neither more nor less.” Alice in Wonderland
Python has a powerful feature that allows a designer of a class to decide what an operation like == or
< should mean. (We’ve just shown how we can control how our own objects are converted to strings,
so we’ve already made a start!) We’ll cover more detail later. But sometimes the implementors will
attach shallow equality semantics, and sometimes deep equality, as shown in this little experiment:
1 p = Point(4, 2)
2 s = Point(4, 2)
3 print("== on Points returns", p == s)
4 # By default, == on Point objects does a shallow equality test
5
6 a = [2,3]
7 b = [2,3]
8 print("== on lists returns", a == b)
9 # But by default, == does a deep equality test on lists
This outputs:
Chapter 16: Classes and Objects — Digging a little deeper 270
So we conclude that even though the two lists (or tuples, etc.) are distinct objects with different
memory addresses, for lists the == operator tests for deep equality, while in the case of points it
makes a
shallow test.
16.4. Copying
Aliasing can make a program difficult to read because changes made in one place might have
unexpected effects in another place. It is hard to keep track of all the variables that might refer
to a given object.
Copying an object is often an alternative to aliasing. The copy module contains a function called
copy that can duplicate any object:
Once we import the copy module, we can use the copy function to make a new Point. p1 and p2 are
not the same point, but they contain the same data.
To copy a simple object like a Point, which doesn’t contain any embedded objects, copy is sufficient.
This is called shallow copying.
For something like a Rectangle, which contains a reference to a Point, copy doesn’t do quite the
right thing. It copies the reference to the Point object, so both the old Rectangle and the new one
refer to a single Point.
If we create a box, b1, in the usual way and then make a copy, b2, using copy, the resulting state
diagram looks like this:
Chapter 16: Classes and Objects — Digging a little deeper 271
This is almost certainly not what we want. In this case, invoking grow on one of the Rectangle
objects would not affect the other, but invoking move on either would affect both! This behavior is
confusing
and error-prone. The shallow copy has created an alias to the Point that represents the corner.
Fortunately, the copy module contains a function named deepcopy that copies not only the object
but also any embedded objects. It won’t be surprising to learn that this operation is called a deep
copy.
1 >>> b2 = copy.deepcopy(b1)
16.5. Glossary
deep copy
To copy the contents of an object as well as any embedded objects, and
any objects embedded in them, and so on; implemented by the deepcopy
function in the copy module.
deep equality
Equality of values, or two references that point to objects that have
the same value.
shallow copy
To copy the contents of an object, including any references to embedded
objects; implemented by the copy function in the copy module.
shallow equality
Equality of references, or two references that point to the same object.
Chapter 16: Classes and Objects — Digging a little deeper 272
16.6. Exercises
1. Add a method area to the Rectangle class that returns the area of any instance:
2. Write a perimeter method in the Rectangle class so that we can find the perimeter of any rectangle
instance:
3. Write a flip method in the Rectangle class that swaps the width and the height of any rectangle
instance:
4. Write a new method in the Rectangle class to test if a Point falls within the rectangle. For this
exercise, assume that a rectangle at (0,0) with width 10 and height 5 has open upper bounds on the
width and height, i.e. it stretches in the x direction from [0 to 10), where 0 is included but 10 is
excluded, and from [0 to 5) in the y direction. So it does not contain the point (10,2). These tests
should pass:
5. In games, we often put a rectangular “bounding box” around our sprites. (A sprite is an object that
can
move about in the game, as we will see shortly.) We can then do collision detection between,
say, bombs and spaceships, by comparing whether their rectangles overlap anywhere.
Write a function to determine whether two rectangles collide. Hint: this might be quite a tough
exercise! Think carefully about all the cases before you code.
Chapter 17: PyGame
PyGame is a package that is not part of the standard Python distribution, so if you do not
already have it installed (i.e. import pygame fails), download and install a suitable version from
http://pygame.org/download.shtml. These notes are based on PyGame 1.9.1, the most recent version
at the time of writing.
PyGame comes with a substantial set of tutorials, examples, and help, so there is ample opportunity
to stretch yourself on the code. You may need to look around a bit to find these resources, though:
if you’ve
installed PyGame on a Windows machine, for example, they’ll end up in a folder like
C:\Python31\Lib\site-packages\pygame\ where you will find directories for docs and examples.
In every game, in the setup section we’ll create a window, load and prepare some content, and then
enter the game loop. The game loop continuously does four main things:
- it polls for events — i.e. asks the system whether events have
occurred — and responds appropriately,
- it updates whatever internal data structures or objects need
changing,
- it draws the current state of the game into a (non-visible) surface,
- it puts the just-drawn surface on display.
Chapter 17: PyGame 276
1 import pygame
2
3 def main():
4 """ Set up the game and run the main game loop """
5 pygame.init() # Prepare the pygame module for use
6 surface_sz = 480 # Desired physical surface size, in pixels.
7
8 # Create surface of (width, height), and its window.
9 main_surface = pygame.display.set_mode((surface_sz, surface_sz))
10
11 # Set up some data to describe a small rectangle and its color
12 small_rect = (300, 200, 150, 90)
13 some_color = (255, 0, 0) # A color is a mix of (Red, Green, Blue)
14
15 while True:
16 ev = pygame.event.poll() # Look for any event
17 if ev.type == pygame.QUIT: # Window close button clicked?
18 break # ... leave game loop
19
20 # Update your game objects and data structures here...
21
22 # We draw everything from scratch on each frame.
23 # So first fill everything with the background color
24 main_surface.fill((0, 200, 255))
25
26 # Overpaint a smaller rectangle on the main surface
27 main_surface.fill(some_color, small_rect)
28
29 # Now the surface is ready, tell pygame to display it!
30 pygame.display.flip()
31
32 pygame.quit() # Once we leave the loop, close the window.
33
34 main()
This program pops up a window which stays there until we close it:
Chapter 17: PyGame 277
PyGame does all its drawing onto rectangular surfaces. After initializing PyGame at line 5, we create
a window holding our main surface. The main loop of the game extends from line 15 to 30, with the
following key bits of logic:
- First (line 16) we poll to fetch the next event that might be ready
for us. This step will always be followed by some conditional
statements that will determine whether any event that we’re
interested in has happened. Polling for the event consumes it, as
far as PyGame is concerned, so we only get one chance to fetch and
use each event. On line 17 we test whether the type of the event is
the predefined constant called pygame.QUIT. This is the event that
we’ll see when the user clicks the close button on the PyGame
window. In response to this event, we leave the loop.
- Once we’ve left the loop, the code at line 32 closes window, and
we’ll return from function main. Your program could go on to do
other things, or reinitialize pygame and create another window, but
it will usually just end too.
- There are different kinds of events — key presses, mouse motion,
Chapter 17: PyGame 278
So in the setup section, before we enter the game loop, we’d load the image, like this:
1 ball = pygame.image.load("ball.png")
and after line 28 in the program above, we’d add this code to display our image at position (100,120):
To display text, we need do do three things. Before we enter the game loop, we instantiate a font
object:
and after line 28, again, we use the font’s render method to create a new surface containing the
pixels of the drawn text, and then, as in the case for images, we blit our new surface onto the main
surface. Notice
that render takes two extra parameters — the second tells it whether to carefully smooth edges of
the text while drawing (this process is called anti-aliasing), and the second is the color that we want
the
text text be. Here we’ve used (0,0,0) which is black:
We’ll demonstrate these two new features by counting the frames — the iterations of the game loop —
and keeping some timing information. On each frame, we’ll display the frame count, and the frame
rate. We will
only update the frame rate after every 500 frames, when we’ll look at the timing interval and can
do the calculations.
First download an image of a beach ball. You can find one at https://learnpythontherightway.com/_-
downloads/ball.png. Upload it to your repl by using the “Upload file” menu. Now you can run the
following code.
Chapter 17: PyGame 280
1 import pygame
2 import time
3
4 def main():
5
6 pygame.init() # Prepare the PyGame module for use
7 main_surface = pygame.display.set_mode((480, 240))
8
9 # Load an image to draw. Substitute your own.
10 # PyGame handles gif, jpg, png, etc. image types.
11 ball = pygame.image.load("ball.png")
12
13 # Create a font for rendering text
14 my_font = pygame.font.SysFont("Courier", 16)
15
16 frame_count = 0
17 frame_rate = 0
18 t0 = time.process_time()
19
20 while True:
21
22 # Look for an event from keyboard, mouse, joystick, etc.
23 ev = pygame.event.poll()
24 if ev.type == pygame.QUIT: # Window close button clicked?
25 break # Leave game loop
26
27 # Do other bits of logic for the game here
28 frame_count += 1
29 if frame_count % 500 == 0:
30 t1 = time.process_time()
31 frame_rate = 500 / (t1-t0)
32 t0 = t1
33
34 # Completely redraw the surface, starting with background
35 main_surface.fill((0, 200, 255))
36
37 # Put a red rectangle somewhere on the surface
38 main_surface.fill((255,0,0), (300, 100, 150, 90))
39
40 # Copy our image to the surface, at this (x,y) posn
41 main_surface.blit(ball, (50, 70))
42
43 # Make a new surface with an image of the text
Chapter 17: PyGame 281
The frame rate is close to ridiculous — a lot faster than one’s eye can process frames. (Commercial
video games usually plan their action for 60 frames per second (fps).) Of course, our rate will drop
once we
start doing something a little more strenuous inside our game loop.
We’ll create a new module for the drawing code, called draw_queens.py. When we have our test
case(s) working, we can go back to our solver, import this new module, and add a call to our new
function to draw a
board each time a solution is discovered.
We begin with a background of black and red squares for the board. Perhaps we could create an
image that we could load and draw, but that approach would need different background images for
different size boards. Just drawing our own red and black rectangles of the appropriate size sounds
like much more fun!
1 def draw_board(the_board):
2 """ Draw a chess board with queens, from the_board. """
3
4 pygame.init()
5 colors = [(255,0,0), (0,0,0)] # Set up colors [red, black]
6
7 n = len(the_board) # This is an NxN chess board.
8 surface_sz = 480 # Proposed physical surface size. \
9
10 sq_sz = surface_sz // n # sq_sz is length of a square.
11 surface_sz = n * sq_sz # Adjust to exactly fit n squares.
12
13 # Create the surface of (width, height), and its window.
14 surface = pygame.display.set_mode((surface_sz, surface_sz))
Here we precompute sq_sz, the integer size that each square will be, so that we can fit the squares
nicely into the available window. So if we’d like the board to be 480x480, and we’re drawing an 8x8
chessboard,
then each square will need to have a size of 60 units. But we notice that a 7x7 board cannot fit nicely
into 480 — we’re going to get some ugly border that our squares don’t fill exactly. So we recompute
the
surface size to exactly fit our squares before we create the window.
Now let’s draw the squares, in the game loop. We’ll need a nested loop: the outer loop will run over
the rows of the chessboard, the inner loop over the columns:
Chapter 17: PyGame 283
There are two important ideas in this code: firstly, we compute the rectangle to be filled from the
row and col loop variables, multiplying them by the size of the square to get their position. And, of
course, each square is a fixed width and height. So the_square represents the rectangle to be filled
on the current iteration of the loop. The second idea is that we have to alternate colors on every
square. In the earlier setup code we created a list containing two colors, here we manipulate c_indx
(which will always either have the value 0 or 1) to start each row on a color that is different from
the previous row’s starting color, and to switch colors each time a square is filled.
This (together with the other fragments not shown to flip the surface onto the display) leads to the
pleasing backgrounds like this, for different size boards:
Now, on to drawing the queens! Recall that our solution [6,4,2,0,5,7,1,3] means that in column
0 of the board we want a queen at row 6, at column 1 we want a queen at row 4, and so on. So we
need a loop running over each queen:
In this chapter we already have a beach ball image, so we’ll use that for our queens. In the setup
code before our game loop, we load the ball image (as we did before), and in the body of the loop,
we add the line:
Chapter 17: PyGame 284
We’re getting there, but those queens need to be centred in their squares! Our problem arises from
the fact that both the ball and the rectangle have their upper left corner as their reference points. If
we’re going to centre this ball in the square, we need to give it an extra offset in both the x and y
direction. (Since the ball is round and the square is square, the offset in the two directions will be
the same, so we’ll just compute a single offset value, and use it in both directions.)
The offset we need is half the (size of the square less the size of the ball). So we’ll precompute this
Chapter 17: PyGame 285
in the game’s setup section, after we’ve loaded the ball and determined the square size:
Now we touch up the drawing code for the ball and we’re done:
We might just want to think about what would happen if the ball was bigger than the square. In that
case, ball_offset would become negative. So it would still be centered in the square - it would just
spill over the boundaries, or perhaps obscure the square entirely!
Here is the complete program:
1 import pygame
2
3 def draw_board(the_board):
4 """ Draw a chess board with queens, as determined by the the_board. """
5
6 pygame.init()
7 colors = [(255,0,0), (0,0,0)] # Set up colors [red, black]
8
9 n = len(the_board) # This is an NxN chess board.
10 surface_sz = 480 # Proposed physical surface size. \
11
12 sq_sz = surface_sz // n # sq_sz is length of a square.
13 surface_sz = n * sq_sz # Adjust to exactly fit n squares.
14
15 # Create the surface of (width, height), and its window.
16 surface = pygame.display.set_mode((surface_sz, surface_sz))
17
18 ball = pygame.image.load("ball.png")
19
20 # Use an extra offset to centre the ball in its square.
21 # If the square is too small, offset becomes negative,
22 # but it will still be centered :-)
23 ball_offset = (sq_sz-ball.get_width()) // 2
24
25 while True:
26
27 # Look for an event from keyboard, mouse, etc.
28 ev = pygame.event.poll()
29 if ev.type == pygame.QUIT:
Chapter 17: PyGame 286
30 break;
31
32 # Draw a fresh background (a blank chess board)
33 for row in range(n): # Draw each row of the board.
34 c_indx = row % 2 # Alternate starting color
35 for col in range(n): # Run through cols drawing squares
36 the_square = (col*sq_sz, row*sq_sz, sq_sz, sq_sz)
37 surface.fill(colors[c_indx], the_square)
38 # Now flip the color index for the next square
39 c_indx = (c_indx + 1) % 2
40
41 # Now that squares are drawn, draw the queens.
42 for (col, row) in enumerate(the_board):
43 surface.blit(ball,
44 (col*sq_sz+ball_offset,row*sq_sz+ball_offset))
45
46 pygame.display.flip()
47
48
49 pygame.quit()
50
51 if __name__ == "__main__":
52 draw_board([0, 5, 3, 1, 6, 4, 2]) # 7 x 7 to test window size
53 draw_board([6, 4, 2, 0, 5, 7, 1, 3])
54 draw_board([9, 6, 0, 3, 10, 7, 2, 4, 12, 8, 11, 5, 1]) # 13 x 13
55 draw_board([11, 4, 8, 12, 2, 7, 3, 15, 0, 14, 10, 6, 13, 1, 5, 9])
There is one more thing worth reviewing here. The conditional statement on line 50 tests whether
the name of the currently executing program is __main__. This allows us to distinguish whether this
module is being
run as a main program, or whether it has been imported elsewhere, and used as a module. If we
run this module in Python, the test cases in lines 51-54 will be executed. However, if we import this
module into another program (i.e. our N queens solver from earlier) the condition at line 50 will be
false, and the statements on lines 51-54 won’t run.
In Chapter 14, (14.9. Eight Queens puzzle, part 2) our main program looked like this:
Chapter 17: PyGame 287
1 def main():
2
3 bd = list(range(8)) # Generate the initial permutation
4 num_found = 0
5 tries = 0
6 while num_found < 10:
7 random.shuffle(bd)
8 tries += 1
9 if not has_clashes(bd):
10 print("Found solution {0} in {1} tries.".format(bd, tries))
11 tries = 0
12 num_found += 1
13
14 main()
Now we just need two changes. At the top of that program, we import the module that we’ve been
working on here (assume we called it draw_queens). (You’ll have to ensure that the two modules are
saved in the same folder.) Then after line 10 here we add a call to draw the solution that we’ve just
discovered:
1 draw_queens.draw_board(bd)
And that gives a very satisfying combination of program that can search for solutions to the N
queens problem, and when it finds each, it pops up the board showing the solution.
17.4. Sprites
A sprite is an object that can move about in a game, and has internal behaviour and state of its own.
For example, a spaceship would be a sprite, the player would be a sprite, and bullets and bombs
would all be
sprites.
Object oriented programming (OOP) is ideally suited to a situation like this: each object can have its
own attributes and internal state, and a couple of methods. Let’s have some fun with our N queens
board. Instead
of placing the queen in her final position, we’d like to drop her in from the top of the board, and let
her fall into position, perhaps bouncing along the way.
The first encapsulation we need is to turn each of our queens into an object. We’ll keep a list of all
the active sprites (i.e. a list of queen objects), and arrange two new things in our game loop:
- After handling events, but before drawing, call an update method
Chapter 17: PyGame 288
on every sprite. This will give each sprite a chance to modify its
internal state in some way — perhaps change its image, or change
its position, or rotate itself, or make itself grow a bit bigger or
a bit smaller.
- Once all the sprites have updated themselves, the game loop can
begin drawing - first the background, and then call a draw method
on each sprite in turn, and delegate (hand off) the task of drawing
to the object itself. This is in line with the OOP idea that we
don’t say “Hey, draw, show this queen!”, but we prefer to say
“Hey, queen, draw yourself!”.
We start with a simple object, no movement or animation yet, just scaffolding, to see how to fit all
the pieces together:
1 class QueenSprite:
2
3 def __init__(self, img, target_posn):
4 """ Create and initialize a queen for this
5 target position on the board
6 """
7 self.image = img
8 self.target_posn = target_posn
9 self.posn = target_posn
10
11 def update(self):
12 return # Do nothing for the moment.
13
14 def draw(self, target_surface):
15 target_surface.blit(self.image, self.posn)
We’ve given the sprite three attributes: an image to be drawn, a target position, and a current position.
If we’re going to move the spite about, the current position may need to be different from the target,
which is where we want the queen finally to end up. In this code at this time we’ve done nothing in
the update method, and our draw method (which can probably remain this simple in future) simply
draws itself at
its current position on the surface that is provided by the caller.
With its class definition in place, we now instantiate our N queens, put them into a list of sprites,
and arrange for the game loop to call the update and draw methods on each frame. The new bits of
code, and the
revised game loop look like this:
Chapter 17: PyGame 289
This works just like it did before, but our extra work in making objects for the queens has prepared
the way for some more ambitious extensions.
Let us begin with a falling queen object. At any instant, it will have a velocity i.e. a speed, in a certain
direction. (We are only working with movement in the y direction, but use your imagination!) So in
the
object’s update method, we want to change its current position by its velocity. If our N queens board
is floating in space, velocity would stay constant, but hey, here on Earth we have gravity! Gravity
changes
the velocity on each time interval, so we’ll want a ball that speeds up as it falls further. Gravity will
be constant for all queens, so we won’t keep it in the instances — we’ll just make it a variable in our
module. We’ll make one other change too: we will start every queen at the top of the board, so that
it can fall towards its target position. With these changes, we now get the following:
Chapter 17: PyGame 290
1 gravity = 0.0001
2
3 class QueenSprite:
4
5 def __init__(self, img, target_posn):
6 self.image = img
7 self.target_posn = target_posn
8 (x, y) = target_posn
9 self.posn = (x, 0) # Start ball at top of its column
10 self.y_velocity = 0 # with zero initial velocity
11
12 def update(self):
13 self.y_velocity += gravity # Gravity changes velocity
14 (x, y) = self.posn
15 new_y_pos = y + self.y_velocity # Velocity moves the ball
16 self.posn = (x, new_y_pos) # to this new position.
17
18 def draw(self, target_surface): # Same as before.
19 target_surface.blit(self.image, self.posn)
Making these changes gives us a new chessboard in which each queen starts at the top of its column,
and speeds up, until it drops off the bottom of the board and disappears forever. A good start — we
have
movement!
The next step is to get the ball to bounce when it reaches its own target position. It is pretty easy to
bounce something — you just change the sign of its velocity, and it will move at the same speed in
the opposite direction. Of course, if it is travelling up towards the top of the board it will be slowed
down by gravity. (Gravity always sucks down!) And you’ll find it bounces all the way up to where
it began
from, reaches zero velocity, and starts falling all over again. So we’ll have bouncing balls that never
settle.
A realistic way to settle the object is to lose some energy (probably to friction) each time it bounces
— so instead of simply reversing the sign of the velocity, we multiply it by some fractional factor —
say
-0.65. This means the ball only retains 65% of its energy on each bounce, so it will, as in real life, stop
bouncing after a short while, and settle on its “ground”.
The only changes are in the update method, which now looks like this:
Chapter 17: PyGame 291
1 def update(self):
2 self.y_velocity += gravity
3 (x, y) = self.posn
4 new_y_pos = y + self.y_velocity
5 (target_x, target_y) = self.target_posn # Unpack the position
6 dist_to_go = target_y - new_y_pos # How far to our floor?
7
8 if dist_to_go < 0: # Are we under floor?
9 self.y_velocity = -0.65 * self.y_velocity # Bounce
10 new_y_pos = target_y + dist_to_go # Move back above floor
11
12 self.posn = (x, new_y_pos) # Set our new position.
Heh, heh, heh! We’re not going to show animated screenshots, so copy the code into your Python
environment and see for yourself.
17.5. Events
The only kind of event we’re handled so far has been the QUIT event. But we can also detect
keydown and keyup events, mouse motion, and mousebutton down or up events. Consult the
PyGame documentation and follow the link to Event.
When your program polls for and receives an event object from PyGame, its event type will
determine what secondary information is available. Each event object carries a dictionary (which
you may only cover in
due course in these notes). The dictionary holds certain keys and values that make sense for the type
of event.
For example, if the type of event is MOUSEMOTION, we’ll be able to find the mouse position and
information about the state of the mouse buttons in the dictionary attached to the event. Similarly,
if the event is
KEYDOWN, we can learn from the dictionary which key went down, and whether any modifier
keys (shift, control, alt, etc.) are also down. You also get events when the game window becomes
active (i.e. gets focus) or
loses focus.
The event object with type NOEVENT is returned if there are no events waiting. Events can be
printed, allowing you to experiment and play around. So dropping these lines of code into the game
loop directly
after polling for any event is quite informative:
Chapter 17: PyGame 292
With this is place, hit the space bar and the escape key, and watch the events you get. Click your
three mouse buttons. Move your mouse over the window. (This causes a vast cascade of events, so
you may also need to
filter those out of the printing.) You’ll get output that looks something like this:
1 <Event(17-VideoExpose {})>
2 <Event(1-ActiveEvent {'state': 1, 'gain': 0})>
3 <Event(2-KeyDown {'scancode': 57, 'key': 32, 'unicode': ' ', 'mod': 0})>
4 <Event(3-KeyUp {'scancode': 57, 'key': 32, 'mod': 0})>
5 <Event(2-KeyDown {'scancode': 1, 'key': 27, 'unicode': '\x1b', 'mod': 0})>
6 <Event(3-KeyUp {'scancode': 1, 'key': 27, 'mod': 0})>
7 ...
8 <Event(4-MouseMotion {'buttons': (0, 0, 0), 'pos': (323, 194), 'rel': (-3, -1)})>
9 <Event(4-MouseMotion {'buttons': (0, 0, 0), 'pos': (322, 193), 'rel': (-1, -1)})>
10 <Event(4-MouseMotion {'buttons': (0, 0, 0), 'pos': (321, 192), 'rel': (-1, -1)})>
11 <Event(4-MouseMotion {'buttons': (0, 0, 0), 'pos': (319, 192), 'rel': (-2, 0)})>
12 <Event(5-MouseButtonDown {'button': 1, 'pos': (319, 192)})>
13 <Event(6-MouseButtonUp {'button': 1, 'pos': (319, 192)})>
14 <Event(4-MouseMotion {'buttons': (0, 0, 0), 'pos': (319, 191), 'rel': (0, -1)})>
15 <Event(5-MouseButtonDown {'button': 2, 'pos': (319, 191)})>
16 <Event(5-MouseButtonDown {'button': 5, 'pos': (319, 191)})>
17 <Event(6-MouseButtonUp {'button': 5, 'pos': (319, 191)})>
18 <Event(6-MouseButtonUp {'button': 2, 'pos': (319, 191)})>
19 <Event(5-MouseButtonDown {'button': 3, 'pos': (319, 191)})>
20 <Event(6-MouseButtonUp {'button': 3, 'pos': (319, 191)})>
21 ...
22 <Event(1-ActiveEvent {'state': 1, 'gain': 0})>
23 <Event(12-Quit {})>
So let us now make these changes to the code near the top of our game loop:
Chapter 17: PyGame 293
1 while True:
2
3 # Look for an event from keyboard, mouse, etc.
4 ev = pygame.event.poll()
5 if ev.type == pygame.QUIT:
6 break;
7 if ev.type == pygame.KEYDOWN:
8 key = ev.dict["key"]
9 if key == 27: # On Escape key ...
10 break # leave the game loop.
11 if key == ord("r"):
12 colors[0] = (255, 0, 0) # Change to red + black.
13 elif key == ord("g"):
14 colors[0] = (0, 255, 0) # Change to green + black.
15 elif key == ord("b"):
16 colors[0] = (0, 0, 255) # Change to blue + black.
17
18 if ev.type == pygame.MOUSEBUTTONDOWN: # Mouse gone down?
19 posn_of_click = ev.dict["pos"] # Get the coordinates.
20 print(posn_of_click) # Just print them.
Lines 7-16 show typical processing for a KEYDOWN event — if a key has gone down, we test which
key it is, and take some action. With this in place, we have another way to quit our queens program
—by hitting the
escape key. Also, we can use keys to change the color of the board that is drawn.
Finally, at line 20, we respond (pretty lamely) to the mouse button going down.
As a final exercise in this section, we’ll write a better response handler to mouse clicks. What we
will do is figure out if the user has clicked the mouse on one of our sprites. If there is a sprite under
the
mouse when the click occurs, we’ll send the click to the sprite and let it respond in some sensible
way.
We’ll begin with some code that finds out which sprite is under the clicked position, perhaps none!
We add a method to the class, contains_point, which returns True if the point is within the rectangle
of the sprite:
Chapter 17: PyGame 294
Now in the game loop, once we’ve seen the mouse event, we determine which queen, if any, should
be told to respond to the event:
1 if ev.type == pygame.MOUSEBUTTONDOWN:
2 posn_of_click = ev.dict["pos"]
3 for sprite in all_sprites:
4 if sprite.contains_point(posn_of_click):
5 sprite.handle_click()
6 break
And the final thing is to write a new method called handle_click in the QueenSprite class. When a
sprite is clicked, we’ll just add some velocity in the up direction, i.e. kick it back into the air.
1 def handle_click(self):
2 self.y_velocity += -0.3 # Kick it up
With these changes we have a playable game! See if you can keep all the balls on the move, not
allowing any one to settle!
A compound image containing smaller patches which are intended for animation is called a sprite
sheet. Download this sprite sheet by right-clicking in your browser and saving it in your working
Chapter 17: PyGame 295
directory
with the name duke_spritesheet.png.
The sprite sheet has been quite carefully prepared: each of the 10 patches are spaced exactly 50 pixels
apart. So, assuming we want to draw patch number 4 (numbering from 0), we want to draw only
the rectangle
that starts at x position 200, and is 50 pixels wide, within the sprite sheet. Here we’ve shown the
patches and highlighted the patch we want to draw.
The blit method we’ve been using — for copying pixels from one surface to another —can copy
a sub-rectangle of the source surface. So the grand idea here is that each time we draw Duke, we
won’t blit the
whole sprite sheet. Instead we’ll provide an extra rectangle argument that determines which portion
of the sprite sheet will be blitted.
We’re going to add new code in this section to our existing N queens drawing game. What we want
is to put some instances of Duke on the chessboard somewhere. If the user clicks on one of them,
we’ll get him
to respond by waving back, for one cycle of his animation.
But before we do that, we need another change. Up until now, our game loop has been running at
really fast frame rates that are unpredictable. So we’ve chosen some magic numbers for gravity and
for bouncing and
kicking the ball on the basis of trial-and-error. If we’re going to start animating more sprites, we
need to tame our game loop to operate at a fixed, known frame rate. This will allow us to plan our
animation better.
PyGame gives us the tools to do this in just two lines of code. In the setup section of the game, we
instantiate a new Clock object:
1 my_clock = pygame.time.Clock()
and right at the bottom of the game loop, we call a method on this object that limits the frame rate
to whatever we specify. So let’s plan our game and animation for 60 frames per second, by adding
this line at
the bottom of our game loop:
You’ll find that you have to go back and adjust the numbers for gravity and kicking the ball now, to
match this much slower frame rate. When we plan an animation so that it only works sensibly at a
Chapter 17: PyGame 296
1 class DukeSprite:
2
3 def __init__(self, img, target_posn):
4 self.image = img
5 self.posn = target_posn
6
7 def update(self):
8 return
9
10 def draw(self, target_surface):
11 return
12
13 def handle_click(self):
14 return
15
16 def contains_point(self, pt):
17 # Use code from QueenSprite here
18 return
The only changes we’ll need to the existing game are all in the setup section. We load up the new
sprite sheet and instantiate a couple of instances of Duke, at the positions we want on the chessboard.
So before
entering the game loop, we add this code:
Now the game loop will test if each instance has been clicked, will call the click handler for that
instance. It will also call update and draw for all sprites. All the remaining changes we need to make
will be made
in the methods of the DukeSprite class.
Let’s begin with drawing one of the patches. We’ll introduce a new attribute curr_patch_num into
the class. It holds a value between 0 and 9, and determines which patch to draw. So the job of the
draw method is to compute the sub-rectangle of the patch to be drawn, and to blit only that portion
of the spritesheet:
Now on to getting the animation to work. We need to arrange logic in update so that if we’re busy
animating, we change the curr_patch_num every so often, and we also decide when to bring Duke
back to his rest position, and stop the animation. An important issue is that the game loop frame rate
—in our case 60 fps — is not the same as the animation rate — the rate at which we want to change
Duke’s animation patches. So we’ll plan Duke wave’s animation cycle for a duration of 1 second. In
other words, we want to play out Duke’s 10 animation patches over 60 calls to update. (This is how
the baking of the animation takes place!) So we’ll keep another animation frame counter in the class,
which will be zero when we’re not animating, and each call to update will increment the counter up
to 59, and then back to 0. We can then divide that animation counter by 6, to set the curr_patch_num
variable to select the patch we want to show.
1 def update(self):
2 if self.anim_frame_count > 0:
3 self.anim_frame_count = (self.anim_frame_count + 1 ) % 60
4 self.curr_patch_num = self.anim_frame_count // 6
Notice that if anim_frame_count is zero, i.e. Duke is at rest, nothing happens here. But if we start
the counter running, it will count up to 59 before settling back to zero. Notice also, that because
anim_frame_count can only be a value between 0 and 59, the curr_patch_num will always stay
between 0 and 9. Just what we require!
Now how do we trigger the animation, and start it running? On the mouse click.
1 def handle_click(self):
2 if self.anim_frame_count == 0:
3 self.anim_frame_count = 5
Two things of interest here. We only start the animation if Duke is at rest. Clicks on Duke while he
is already waving get ignored. And when we do start the animation, we set the counter to 5 — this
Chapter 17: PyGame 298
means that on
the very next call to update the counter becomes 6, and the image changes. If we had set the counter
to 1, we would have needed to wait for 5 more calls to update before anything happened — a slight
lag, but enough to make things feel sluggish.
The final touch-up is to initialize our two new attributes when we instantiate the class. Here is the
code for the whole class now:
1 class DukeSprite:
2
3 def __init__(self, img, target_posn):
4 self.image = img
5 self.posn = target_posn
6 self.anim_frame_count = 0
7 self.curr_patch_num = 0
8
9 def update(self):
10 if self.anim_frame_count > 0:
11 self.anim_frame_count = (self.anim_frame_count + 1 ) % 60
12 self.curr_patch_num = self.anim_frame_count // 6
13
14 def draw(self, target_surface):
15 patch_rect = (self.curr_patch_num * 50, 0,
16 50, self.image.get_height())
17 target_surface.blit(self.image, self.posn, patch_rect)
18
19 def contains_point(self, pt):
20 """ Return True if my sprite rectangle contains pt """
21 (my_x, my_y) = self.posn
22 my_width = self.image.get_width()
23 my_height = self.image.get_height()
24 (x, y) = pt
25 return ( x >= my_x and x < my_x + my_width and
26 y >= my_y and y < my_y + my_height)
27
28 def handle_click(self):
29 if self.anim_frame_count == 0:
30 self.anim_frame_count = 5
Now we have two extra Duke instances on our chessboard, and clicking on either causes that instance
to wave.
Chapter 17: PyGame 299
17.8. Reflections
Object oriented programming is a good organizational tool for software. In the examples in this
chapter, we’ve started to use (and hopefully appreciate) these benefits. Here we had N queens each
with its own
state, falling to its own floor level, bouncing, getting kicked, etc. We might have managed without
the organizational power of objects — perhaps we could have kept lists of velocities for each queen,
and lists
of target positions, and so on — our code would likely have been much more complicated, ugly, and
a lot poorer!
17.9. Glossary
animation rate
The rate at which we play back successive patches to create the illusion
of movement. In the sample we considered in this chapter, we played
Duke’s 10 patches over the duration of one second. Not the same as the
frame rate.
baked animation
An animation that is designed to look good at a predetermined fixed
frame rate. This reduces the amount of computation that needs to be done
when the game is running. High-end commercial games usually bake their
animations.
blit
A verb used in computer graphics, meaning to make a fast copy of an
image or pixels from a sub-rectangle of one image or surface to another
surface or image.
frame rate
The rate at which the game loop executes and updates the display.
game loop
A loop that drives the logic of a game. It will usually poll for events,
then update each of the objects in the game, then get everything drawn,
and then put the newly drawn frame on display.
Chapter 17: PyGame 301
pixel
A single picture element, or dot, from which images are made.
poll
To ask whether something like a keypress or mouse movement has happened.
Game loops usually poll to discover what events have occurred. This is
different from event-driven programs like the ones seen in the chapter
titled “Events”. In those cases, the button click or keypress event
triggers the call of a handler function in your program, but this
happens behind your back.
sprite
An active agent or element in a game, with its own state, position and
behaviour.
surface
This is PyGame’s term for what the Turtle module calls a canvas. A
surface is a rectangle of pixels used for displaying shapes and images.
17.10. Exercises
1. Have fun with Python, and with PyGame.
2. We deliberately left a bug in the code for animating Duke. If you click on one of the chessboard
squares
to the right of Duke, he waves anyway. Why? Find a one-line fix for the bug.
3. Use your preferred search engine to search their image library for “sprite sheet playing cards”.
Create a
list [0..51] to represent an encoding of the 52 cards in a deck. Shuffle the cards, slice off the top five
as your hand in a poker deal. Display the hand you have been dealt.
4. So the Aliens game is in outer space, without gravity. Shots fly away forever, and bombs don’t
speed up
when they fall. Add some gravity to the game. Decide if you’re going to allow your own shots to
fall back on your head and kill you.
5. Those pesky Aliens seem to pass right through each other! Change the game so that they collide,
and
destroy each other in a mighty explosion.
Chapter 18: Recursion
Recursion means “defining something in terms of itself” usually at some smaller scale, perhaps
multiple times, to achieve your objective. For example, we might say “A human being is someone
whose mother is a human being”, or “a directory is a structure that holds files and (smaller)
directories”, or “a family tree starts with a couple who have children, each with their own family
sub-trees”.
Programming languages generally support recursion, which means that, in order to solve a
problem,functions can call themselves to solve smaller subproblems.
An order 1 Koch fractal is obtained like this: instead of drawing just one line, draw instead four
smaller segments, in the pattern shown here:
Now what would happen if we repeated this Koch pattern again on each of the order 1 segments?
We’d get this order 2 Koch fractal:
Chapter 18: Recursion 303
Now let us think about it the other way around. To draw a Koch fractal of order 3, we can simply
draw four order 2 Koch fractals. But each of these in turn needs four order 1 Koch fractals, and each
of those in turn needs four order 0 fractals. Ultimately, the only drawing that will take place is at
order 0. This is very simple to code up in Python:
The key thing that is new here is that if order is not zero, koch calls itself recursively to get its job
done.
Let’s make a simple observation and tighten up this code. Remember that turning right by 120 is
the same as turning left by -120. So with a bit of clever rearrangement, we can use a loop instead of
lines 10-16:
Chapter 18: Recursion 304
The final turn is 0 degrees — so it has no effect. But it has allowed us to find a pattern and reduce
seven lines of code to three, which will make things easier for our next observations.
Recursion, the high-level view
One way to think about this is to convince yourself that the function works correctly when you call
it for an order 0 fractal. Then do a mental leap of faith, saying “the fairy godmother (or Python, if
you can think of Python as your fairy godmother) knows how to handle the recursive level 0 calls
for me on lines 11, 13, 15, and 17, so I don’t need to think about that detail!” All I need to focus on
is how to draw an order 1 fractal if I can assume the order 0 one is already working.
You’re practicing mental abstraction — ignoring the subproblem while you solve the big problem.
If this mode of thinking works (and you should practice it!), then take it to the next level. Aha! now
can I see that it will work when called for order 2 under the assumption that it is already working
for level 1.
And, in general, if I can assume the order n-1 case works, can I just solve the level n problem?
Students of mathematics who have played with proofs of induction should see some very strong
similarities here.
Recursion, the low-level operational view
Another way of trying to understand recursion is to get rid of it! If we had separate functions to
draw a level 3 fractal, a level 2 fractal, a level 1 fractal and a level 0 fractal, we could simplify the
above code,
quite mechanically, to a situation where there was no longer any recursion, like this:
11 koch_1(t, size/3)
12 t.left(angle)
13
14 def koch_3(t, size):
15 for angle in [60, -120, 60, 0]:
16 koch_2(t, size/3)
17 t.left(angle)
This trick of “unrolling” the recursion gives us an operational view of what happens. You can trace
the program into koch_3, and from there, into koch_2, and then into koch_1, etc., all the way down
the different layers of the recursion.
This might be a useful hint to build your understanding. The mental goal is, however, to be able to
do the abstraction!
For our nested number list, however, sum will not work:
Chapter 18: Recursion 306
The problem is that the third element of this list, [11, 13], is itself a list, so it cannot just be added
to 1, 2, and 8.
1 def r_sum(nested_num_list):
2 tot = 0
3 for element in nested_num_list:
4 if type(element) == type([]):
5 tot += r_sum(element)
6 else:
7 tot += element
8 return tot
The body of r_sum consists mainly of a for loop that traverses nested_num_list. If element is a
numerical value (the else branch), it is simply added to tot. If element is a list, then r_sum is called
again, with the element as an argument. The statement inside the function definition in which the
function calls itself is known as the recursive call.
The example above has a base case (on line 7) which does not lead to a recursive call: the case
where the element is not a (sub-) list. Without a base case, you’ll have infinite recursion, and your
program will not work.
Recursion is truly one of the most beautiful and elegant tools in computer science.
A slightly more complicated problem is finding the largest value in our nested number list:
Chapter 18: Recursion 307
1 def r_max(nxs):
2 """
3 Find the maximum in a recursive structure of lists
4 within other lists.
5 Precondition: No lists or sublists are empty.
6 """
7 largest = None
8 first_time = True
9 for e in nxs:
10 if type(e) == type([]):
11 val = r_max(e)
12 else:
13 val = e
14
15 if first_time or val > largest:
16 largest = val
17 first_time = False
18
19 return largest
20
21 test(r_max([2, 9, [1, 13], 8, 6]) == 13)
22 test(r_max([2, [[100, 7], 90], [1, 13], 8, 6]) == 100)
23 test(r_max([[[13, 7], 90], 2, [1, 100], 8, 6]) == 100)
24 test(r_max(["joe", ["sam", "ben"]]) == "sam")
1 def recursion_depth(number):
2 print("{0}, ".format(number), end="")
3 recursion_depth(number + 1)
4
5 recursion_depth(0)
After watching the messages flash by, you will be presented with the end of a long traceback that
ends with a message like the following:
Chapter 18: Recursion 308
1 fib(0) = 0
2 fib(1) = 1
3 fib(n) = fib(n-1) + fib(n-2) for n >= 2
1 def fib(n):
2 if n <= 1:
3 return n
4 t = fib(n-1) + fib(n-2)
5 return t
This is a particularly inefficient algorithm, and we’ll show one way of fixing it when we learn about
dictionaries:
Chapter 18: Recursion 309
1 import time
2 t0 = time.clock()
3 n = 35
4 result = fib(n)
5 t1 = time.clock()
6
7 print("fib({0}) = {1}, ({2:.2f} secs)".format(n, result, t1-t0))
1 import os
2
3 def get_dirlist(path):
4 """
5 Return a sorted list of all entries in path.
6 This returns just the names, not the full path to the names.
7 """
8 dirlist = os.listdir(path)
9 dirlist.sort()
10 return dirlist
11
12 def print_files(path, prefix = ""):
13 """ Print recursive listing of contents of path """
14 if prefix == "": # Detect outermost call, print a heading
15 print("Folder listing for", path)
16 prefix = "| "
17
18 dirlist = get_dirlist(path)
19 for f in dirlist:
20 print(prefix+f) # Print the line
21 fullname = os.path.join(path, f) # Turn name into full pathname
22 if os.path.isdir(fullname): # If a directory, recurse.
23 print_files(fullname, prefix + "| ")
Calling the function print_files with some folder name will produce output similar to this:
Chapter 18: Recursion 310
In the tree above, the angle of deviation from the trunk is 30 degrees. Varying that angle gives other
interesting shapes, for example, with the angle at 90 degrees we get this:
Chapter 18: Recursion 311
An interesting animation occurs if we generate and draw trees very rapidly, each time varying the
angle a little. Although the Turtle module can draw trees like this quite elegantly, we could struggle
for good frame rates. So we’ll use PyGame instead, with a few embellishments and observations.
(Once again, we suggest you cut and paste this code into your Python environment.)
21
22 # These next six lines are a simple hack to make the two major halves
23 # of the recursion different colors. Fiddle here to change colors
24 # at other depths, or when depth is even, or odd, etc.
25 if depth == 0:
26 color1 = (255, 0, 0)
27 color2 = (0, 0, 255)
28 else:
29 color1 = color
30 color2 = color
31
32 # make the recursive calls to draw the two subtrees
33 newsz = sz*(1 - trunk_ratio)
34 draw_tree(order-1, theta, newsz, newpos, heading-theta, color1, depth+1)
35 draw_tree(order-1, theta, newsz, newpos, heading+theta, color2, depth+1)
36
37
38 def gameloop():
39
40 theta = 0
41 while True:
42
43 # Handle evente from keyboard, mouse, etc.
44 ev = pygame.event.poll()
45 if ev.type == pygame.QUIT:
46 break;
47
48 # Updates - change the angle
49 theta += 0.01
50
51 # Draw everything
52 main_surface.fill((255, 255, 0))
53 draw_tree(9, theta, surface_size*0.9, (surface_size//2, surface_size-50), -m\
54 ath.pi/2)
55
56 pygame.display.flip()
57 my_clock.tick(120)
58
59
60 gameloop()
61 pygame.quit()
- The math library works with angles in radians rather than degrees.
Chapter 18: Recursion 313
- Lines 14 and 15 uses some high school trigonmetry. From the length
of the desired line (trunk), and its desired angle, cos and
sin help us to calculate the x and y distances we need to
move.
- Line 18 shows that PyGame can also draw lines, and plenty more.
Check out the documentation. For example, drawing a small circle at
each branch point of the tree can be accomplished by adding this
line directly below line 18:
Another interesting effect — instructive too, if you wish to reinforce the idea of different instances
of the function being called at different depths of recursion —is to create a list of colors, and let each
recursive depth use a different color for drawing. (Use the depth of the recursion to index the list of
colors.)
18.7. Glossary
base case
A branch of the conditional statement in a recursive function that does
not give rise to further recursive calls.
infinite recursion
A function that calls itself recursively without ever reaching any base
case. Eventually, infinite recursion causes a runtime error.
recursion
The process of calling a function that is already executing.
recursive call
The statement that calls an already executing function. Recursion can
also be indirect — function f can call
g which calls h, and h could make a call back to f.
Chapter 18: Recursion 314
recursive definition
A definition which defines something in terms of itself. To be useful it
must include base cases which are not recursive. In this way it
differs from a circular definition. Recursive definitions often
provide an elegant way to express complex data structures, like a
directory that can contain other directories, or a menu that can contain
other menus.
18.8. Exercises
1. Modify the Koch fractal program so that it draws a Koch snowflake, like this:
2. 1. Draw a Cesaro torn line fractal, of the order given by the user.
We show four different lines of orders 0,1,2,3. In this example,
the angle of the tear is 10 degrees.
2. Four lines
make a square. Use the code in part a) to draw cesaro
squares. Varying the angle gives interesting effects —
experiment a bit, or perhaps let the user input the angle of the
tear.
Chapter 18: Recursion 315
3. (For the
mathematically inclined). In the squares shown here,
the higher-order drawings become a little larger. (Look at the
bottom lines of each square - they’re not aligned.) This is
because we just halved the drawn part of the line for each
recursive subproblem. So we’ve “grown” the overall square by the
width of the tear(s). Can you solve the geometry problem so that
the total size of the subproblem case (including the tear)
remains exactly the same size as the original?
4.
Adapt the above program to change the color of its three sub-triangles at some depth of recursion.
The
illustration below shows two cases: on the left, the color is changed at depth 0 (the outmost level of
recursion), on the right, at depth 2. If the user supplies a negative depth, the color never changes.
(Hint: add a new optional parameter colorChangeDepth (which defaults to -1), and make this one
smaller on each recursive subcall. Then, in the section of code before you recurse, test whether the
parameter is
zero, and change color.)
Chapter 18: Recursion 316
6. Write a function count that returns the number of occurrences of target in a nested list:
1 test(count(2, []), 0)
2 test(count(2, [2, 9, [2, 1, 13, 2], 8, [2, 6]]) == 4)
3 test(count(7, [[9, [7, 1, 13, 2], 8], [7, 6]]) == 2)
4 test(count(15, [[9, [7, 1, 13, 2], 8], [2, 6]]) == 0)
5 test(count(5, [[5, [5, [1, 5], 5], 5], [5, 6]]) == 6)
6 test(count("a",
7 [["this",["a",["thing","a"],"a"],"is"], ["a","easy"]]) == 4)
7. Write a function flatten that returns a simple list containing all the values in a nested list:
1 test(flatten([2,9,[2,1,13,2],8,[2,6]]) == [2,9,2,1,13,2,8,2,6])
2 test(flatten([[9,[7,1,13,2],8],[7,6]]) == [9,7,1,13,2,8,7,6])
3 test(flatten([[9,[7,1,13,2],8],[2,6]]) == [9,7,1,13,2,8,2,6])
4 test(flatten([["this",["a",["thing"],"a"],"is"],["a","easy"]]) ==
5 ["this","a","thing","a","is","a","easy"])
6 test(flatten([]) == [])
8. Rewrite the fibonacci algorithm without using recursion. Can you find bigger terms of the
sequence? Can
you find fib(200)?
Chapter 18: Recursion 317
9. Use help to find out what sys.getrecursionlimit() and sys.setrecursionlimit(n) do. Create
several
experiments similar to what was done in infinite_recursion.py to test your understanding of how
these module functions work.
10. Write a program that walks a directory structure (as in the last section of this chapter), but
instead of
printing filenames, it returns a list of all the full paths of files in the directory or the
subdirectories. (Don’t include directories in this list — just files.) For example, the output list
might have elements like this:
[“C:Python31Lib\site-packages\pygame\docs\ref\mask.html”,
“C:Python31Lib\site-packages\pygame\docs\ref\midi.html”,
…
“C:Python31Lib\site-packages\pygame\examples\aliens.py”,
…
“C:Python31Lib\site-packages\pygame\examples\data\boom.wav”,
…]
11. Write a program named litter.py that creates an empty file named trash.txt in each
subdirectory of a
directory tree given the root of the tree as an argument (or the current directory as a default).
Now write a program named cleanup.py that removes all these files.
Hint #1: Use the program from the example in the last section of this chapter as a basis for these two
recursive programs. Because you’re going to destroy files on your disks, you better get this right, or
you risk losing files you care about. So excellent advice is that initially you should fake the deletion
of the files — just print the full path names of each file that you intend to delete. Once you’re happy
that your logic is correct, and you can see that you’re not deleting the wrong things, you can replace
the print statement with the real thing.
Hint #2: Look in the os module for a function that removes files.
Chapter 19: Exceptions
19.1. Catching exceptions
Whenever a runtime error occurs, it creates an exception object. The program stops running at this
point and Python prints out the traceback, which ends with a message describing the exception that
occurred.
For example, dividing by zero creates an exception:
1 >>> print(55/0)
2 Traceback (most recent call last):
3 File "<interactive input>", line 1, in <module>
4 ZeroDivisionError: integer division or modulo by zero
1 >>> a = []
2 >>> print(a[5])
3 Traceback (most recent call last):
4 File "<interactive input>", line 1, in <module>
5 IndexError: list index out of range
In each case, the error message on the last line has two parts: the type of error before the colon, and
specifics about the error after the colon.
Sometimes we want to execute an operation that might cause an exception, but we don’t want the
program to stop. We can handle the exception using the try statement to “wrap” a region of code.
For example, we might prompt the user for the name of a file and then try to open it. If the file
doesn’t exist, we don’t want the program to crash; we want to handle the exception:
Chapter 19: Exceptions 319
The try statement has three separate clauses, or parts, introduced by the keywords try … except …
finally. Either the except or the finally clauses can be omitted, so the above code considers the
most common version of the try statement first.
The try statement executes and monitors the statements in the first block. If no exceptions occur, it
skips the block under the except clause. If any exception occurs, it executes the statements in the
except clause and then continues.
We could encapsulate this capability in a function: exists which takes a filename and returns true
if the file exists, false if it doesn’t:
1 def exists(filename):
2 try:
3 f = open(filename)
4 f.close()
5 return True
6 except:
7 return False
.. The try statement in this function was already introduced previously (the same code), so I thought
it would be appropriate to add an else clause here.
pw: HI Victor - I looked at the else: and went against it! It is just a horrible language feature in my
view. Not only do we complicate things by overload the keyword else (here, in the if, and in the for
loop), but it adds no new expressive power over just doing the “didn’t get an exception” inline. And
the allowable combinations are hard to explain. You can omit the except clause if you have a finally
clause. But you cannot have the else if you omit except, … and so on. Too much risk for too little
return, in my view.
A template to test if a file exists, without using exceptions
The function we’ve just shown is not one we’d recommend. It opens and closes the file, which is
semantically different from asking “does it exist?”. How? Firstly, it might update some timestamps
on the file. Secondly, it might tell us that there is no such file if some other program already happens
to have the file open, or if our permission settings don’t allow us to open the file.
Python provides a module called os.path within the os module. It provides a number of useful
functions to work with paths, files and directories, so you should check out the help.
Chapter 19: Exceptions 320
1 import os
2
3 # This is the preferred way to check if a file exists.
4 if os.path.isfile("c:/temp/testdata.txt"):
We can use multiple except clauses to handle different kinds of exceptions (see the Errors and
Exceptions¹⁹ lesson from Python creator Guido van Rossum’s Python Tutorial²⁰ for a more complete
discussion of exceptions). So the program could do one thing if the file does not exist, but do
something else if the file was in use by another program.
ValueError is one of the built-in exception types which most closely matches the kind of error we
want to raise. The complete listing of built-in exceptions can be found at the Built-inExceptions²¹
section of the Python Library Reference²² , again by Python’s creator, Guido van Rossum.
If the function that called get_age (or its caller, or their caller, …) handles the error, then the program
can carry on running; otherwise, Python prints the traceback and exits:
1 >>> get_age()
2 Please enter your age: 42
3 42
4 >>> get_age()
5 Please enter your age: -2
6 Traceback (most recent call last):
7 File "<interactive input>", line 1, in <module>
8 File "learn_exceptions.py", line 4, in get_age
9 raise ValueError("{0} is not a valid age".format(age))
10 ValueError: -2 is not a valid age
¹⁹http://docs.python.org/py3k/tutorial/errors.html
²⁰http://docs.python.org/py3k/tutorial/index.html
²¹http://docs.python.org/py3k/library/exceptions.html
²²http://docs.python.org/py3k/library/index.html
Chapter 19: Exceptions 321
The error message includes the exception type and the additional information that was provided
when the exception object was first created.
It is often the case that lines 5 and 6 (creating the exception object, then raising the exception)
are combined into a single statement, but there are really two different and independent things
happening, so
perhaps it makes sense to keep the two steps separate when we first learn to work with exceptions.
Here we show it all in a single statement:
1 def recursion_depth(number):
2 print("Recursion depth number", number)
3 try:
4 recursion_depth(number + 1)
5 except:
6 print("I cannot go any deeper into this wormhole.")
7
8 recursion_depth(0)
1 import turtle
2 import time
3
4 def show_poly():
5 try:
6 win = turtle.Screen() # Grab/create a resource, e.g. a window
7 tess = turtle.Turtle()
8
9 # This dialog could be cancelled,
10 # or the conversion to int might fail, or n might be zero.
11 n = int(input("How many sides do you want in your polygon?"))
12 angle = 360 / n
13 for i in range(n): # Draw the polygon
14 tess.forward(10)
15 tess.left(angle)
16 time.sleep(3) # Make program wait a few seconds
17 finally:
18 win.bye() # Close the turtle's window
19
20 show_poly()
21 show_poly()
22 show_poly()
In lines 20–22, show_poly is called three times. Each one creates a new window for its turtle, and
draws a polygon with the number of sides input by the user. But what if the user enters a string
that cannot be converted to an int? What if they close the dialog? We’ll get an exception, but even
though we’ve had an exception, we still want to close the turtle’s window. Lines 17–18 does this for
us. Whether we complete the statements in the try clause successfully or not, the finally block will
always be executed.
Notice that the exception is still unhandled — only an except clause can handle an exception, so our
program will still crash. But at least its turtle window will be closed before it crashes!
19.5. Glossary
Chapter 19: Exceptions 323
1 exception
2 An error that occurs at runtime.
3
4 handle an exception
5 To prevent an exception from causing our program to crash, by wrapping
6 the block of code in a `try` ... `except` construct.
7
8 raise
9 To create a deliberate exception by using the `raise` statement.
19.6. Exercises
1. Write a function named readposint that uses the input dialog to prompt the user for a positive
integer and then checks the input to confirm that it meets the requirements. It should be able to
handle
inputs that cannot be converted to int, as well as negative ints, and edge cases (e.g. when the user
closes the dialog, or does not enter anything at all.)
Chapter 20: Dictionaries
All of the compound data types we have studied in detail so far — strings, lists, and tuples — are
sequence types, which use integers as indices to access the values they contain within them.
Dictionaries are yet another kind of compound type. They are Python’s built-in mapping type. They
map keys, which can be any immutable type, to values, which can be any type (heterogeneous), just
like the elements of a list or tuple. In other languages, they are called associative arrays since they
associate a key with a value.
As an example, we will create a dictionary to translate English words into Spanish. For this
dictionary, the keys are strings.
One way to create a dictionary is to start with the empty dictionary and add key:value pairs. The
empty dictionary is denoted {}:
1 >>> eng2sp = {}
2 >>> eng2sp["one"] = "uno"
3 >>> eng2sp["two"] = "dos"
The first assignment creates a dictionary named eng2sp; the other assignments add new key:value
pairs to the dictionary. We can print the current value of the dictionary in the usual way:
1 >>> print(eng2sp)
2 {"two": "dos", "one": "uno"}
The key:value pairs of the dictionary are separated by commas. Each pair contains a key and a value
separated by a colon.
Hashing
The order of the pairs may not be what was expected. Python uses complex algorithms, designed for
very fast access, to determine where the key:value pairs are stored in a dictionary. For our purposes
we can think of this ordering as unpredictable.
You also might wonder why we use dictionaries at all when the same concept of mapping a key to
a value could be implemented using a list of tuples:
Chapter 20: Dictionaries 325
The reason is dictionaries are very fast, implemented using a technique called hashing, which allows
us to access a value very quickly. By contrast, the list of tuples implementation is slow. If we wanted
to find a value associated with a key, we would have to iterate over every tuple, checking the 0th
element. What if the key wasn’t even in the list? We would have to get to the end of it to find out.
1 Another way to create a dictionary is to provide a list of key:value pairs using the\
2 same syntax as the previous output:
3
4 ```python
5 >>> eng2sp = {"one": "uno", "two": "dos", "three": "tres"}
It doesn’t matter what order we write the pairs. The values in a dictionary are accessed with keys,
not with indices, so there is no need to care about ordering.
Here is how we use a key to look up the corresponding value:
1 >>> print(eng2sp["two"])
2 'dos'
1 >>> inventory = {"apples": 430, "bananas": 312, "oranges": 525, "pears": 217}
2 >>> print(inventory)
3 {'pears': 217, 'apples': 430, 'oranges': 525, 'bananas': 312}
If someone buys all of the pears, we can remove the entry from the dictionary:
Chapter 20: Dictionaries 326
Or if we’re expecting more pears soon, we might just change the value associated with pears:
1 >>> inventory["pears"] = 0
2 >>> print(inventory)
3 {'pears': 0, 'apples': 430, 'oranges': 525, 'bananas': 312}
The len function also works on dictionaries; it returns the number of key:value pairs:
1 >>> len(inventory)
2 4
It is so common to iterate over the keys in a dictionary that we can omit the keys method call in the
for loop — iterating over a dictionary implicitly iterates over its keys:
1 for k in eng2sp:
2 print("Got key", k)
The values method is similar; it returns a view object which can be turned into a list:
1 >>> list(eng2sp.values())
2 ['tres', 'dos', 'uno']
The items method also returns a view, which promises a list of tuples — one tuple for each key:value
pair:
1 >>> list(eng2sp.items())
2 [('three', 'tres'), ('two', 'dos'), ('one', 'uno')]
Tuples are often useful for getting both the key and the value at the same time while we are looping:
This produces:
This method can be very useful, since looking up a non-existent key in a dictionary causes a runtime
error:
1 >>> eng2esp["dog"]
2 Traceback (most recent call last):
3 ...
4 KeyError: 'dog'
alias and opposites refer to the same object; copy refers to a fresh copy of the same dictionary. If
we modify alias, opposites is also changed:
An alternative is to use a dictionary. For the keys, we can use tuples that contain the row and column
numbers. Here is the dictionary representation of the same matrix:
We only need three key:value pairs, one for each nonzero element of the matrix. Each key is a tuple,
and each value is an integer.
To access an element of the matrix, we could use the [] operator:
Notice that the syntax for the dictionary representation is not the same as the syntax for the nested
list representation. Instead of two integer indices, we use one index, which is a tuple of integers.
There is one problem. If we specify an element that is zero, we get an error, because there is no entry
in the dictionary with that key:
The first argument is the key; the second argument is the value get should return if the key is not
in the dictionary:
get definitely improves the semantics of accessing a sparse matrix. Shame about the syntax.
20.5. Memoization
If you played around with the fibo function from the chapter on recursion, you might have noticed
that the bigger the argument you provide, the longer the function takes to run. Furthermore, the
run time increases very quickly. On one of our machines, fib(20) finishes instantly, fib(30) takes
about a second, and fib(40) takes roughly forever.
To understand why, consider this call graph for fib with n = 4:
A call graph shows some function frames (instances when the function has been invoked), with lines
connecting each frame to the frames of the functions it calls. At the top of the graph, fib with n =
4 calls fib with n = 3 and n = 2. In turn, fib with n = 3 calls fib with n = 2 and n = 1. And so on.
Count how many times fib(0) and fib(1) are called. This is an inefficient solution to the problem,
and it gets far worse as the argument gets bigger.
A good solution is to keep track of values that have already been computed by storing them in a
dictionary. A previously computed value that is stored for later use is called a memo. Here is an
implementation of fib using memos:
Chapter 20: Dictionaries 331
1 alreadyknown = {0: 0, 1: 1}
2
3 def fib(n):
4 if n not in alreadyknown:
5 new_value = fib(n-1) + fib(n-2)
6 alreadyknown[n] = new_value
7 return alreadyknown[n]
The dictionary named alreadyknown keeps track of the Fibonacci numbers we already know. We
start with only two pairs: 0 maps to 1; and 1 maps to 1.
Whenever fib is called, it checks the dictionary to determine if it contains the result. If it’s there, the
function can return immediately without making any more recursive calls. If not, it has to compute
the new value. The new value is added to the dictionary before the function returns.
Using this version of fib, our machines can compute fib(100) in an eyeblink.
1 >>> fib(100)
2 354224848179261915075
1 >>> letter_counts = {}
2 >>> for letter in "Mississippi":
3 ... letter_counts[letter] = letter_counts.get(letter, 0) + 1
4 ...
5 >>> letter_counts
6 {'M': 1, 's': 4, 'p': 2, 'i': 4}
We start with an empty dictionary. For each letter in the string, we find the current count (possibly
zero) and increment it. At the end, the dictionary contains pairs of letters and their frequencies.
It might be more appealing to display the frequency table in alphabetical order. We can do that with
the items and sort methods:
Chapter 20: Dictionaries 332
Notice in the first line we had to call the type conversion function list. That turns the promise we
get from items into a list, a step that is needed before we can use the list’s sort method.
20.7. Glossary
1 call graph
2 A graph consisting of nodes which represent function frames (or
3 invocations), and directed edges (lines with arrows) showing which
4 frames gave rise to other frames.
5
6 dictionary
7 A collection of key:value pairs that maps from keys to values. The keys
8 can be any immutable value, and the associated value can be of any type.
9
10 immutable data value
11 A data value which cannot be modified. Assignments to elements or slices
12 (sub-parts) of immutable values cause a runtime error.
13
14 key
15 A data item that is *mapped to* a value in a dictionary. Keys are used
16 to look up values in a dictionary. Each key must be unique across the
17 dictionary.
18
19 key:value pair
20 One of the pairs of items in a dictionary. Values are looked up in a
21 dictionary by key.
22
23 mapping type
24 A mapping type is a data type comprised of a collection of keys and
25 associated values. Python's only built-in mapping type is the
26 dictionary. Dictionaries implement the [associative array](http://en.wikipedia.o\
27 rg/wiki/Associative_array) abstract data type.
28
29 memo
30 Temporary storage of precomputed values to avoid duplicating the same
31 computation.
32
Chapter 20: Dictionaries 333
20.8. Exercises
1. Write a program that reads a string and returns a table of the letters of the alphabet in alphabetical
order which occur in the string together with the number of times each letter occurs. Case should
be ignored. A sample output of the program when the user enters the data “ThiS is String with
Upper and lower case Letters”, would look this this:
a2
c1
d1
e5
g1
h2
i4
l2
n2
o1
p2
r4
s5
t5
u1
w2
2. Give the Python interpreter’s response to each of the following from a continuous interpreter
session:
1 >>> d["oranges"] = 20
2 >>> len(d)
Chapter 20: Dictionaries 334
1 >>> "grapes" in d
1 >>> d["pears"]
1 >>> d.get("pears", 0)
Be sure you understand why you get each result. Then apply what you have learned to fill in the
body of the function below:
3. Write a program called alice_words.py that creates a text file named alice_words.txt containing
an
alphabetical listing of all the words, and the number of times each occurs, in the text version of
Alice’s Adventures in Wonderland. (You can obtain a free plain text version of the book, along with
many others, from http://www.gutenberg.org.) The first 10 lines of your output file should look
something like this:
Word Count
=======================
a 631
Chapter 20: Dictionaries 335
a-piece 1
abide 1
able 1
about 94
above 3
absence 1
absurd 2
How many times does the word alice occur in the book?
4. What is the longest word in Alice in Wonderland? How many characters does it have?
Chapter 21: A Case Study: Indexing
your files
We present a small case study that ties together modules, recursion, files, dictionaries and introduces
simple serialization and deserialization.
In this chapter we’re going to use a dictionary to help us find a file rapidly.
The case study has two components:
- A crawler program that scans the disk (or folder) and constructs and saves the dictionary to your
disk.
- A query program that loads the dictionary and can rapidly answer user queries about where a file
is
located.
14 if os.path.isdir(fullname):
15 crawl_files(fullname)
16 else: # Do something useful with the file
17 print("{0:30} {1}".format(f, fullname))
18
19 crawl_files("C:\\Python32")
1 CherryPy-wininst.log C:\Python32\CherryPy-wininst.log
2 bz2.pyd C:\Python32\DLLs\bz2.pyd
3 py.ico C:\Python32\DLLs\py.ico
4 pyc.ico C:\Python32\DLLs\pyc.ico
5 pyexpat.pyd C:\Python32\DLLs\pyexpat.pyd
6 python3.dll C:\Python32\DLLs\python3.dll
7 select.pyd C:\Python32\DLLs\select.pyd
8 sqlite3.dll C:\Python32\DLLs\sqlite3.dll
9 tcl85.dll C:\Python32\DLLs\tcl85.dll
10 tclpip85.dll C:\Python32\DLLs\tclpip85.dll
11 tk85.dll C:\Python32\DLLs\tk85.dll
12 ...
We’ll adapt this now to store the short name and the full path of the file as a key:value pair in a
dictionary. But first, two observations:
- We can have many instances of files with the same name (in different paths). For example, the
name index.
html is quite common. But dictionary keys must be unique. Our solution is to map each key in our
dictionary to a list of paths.
- File names are not case sensitive. (Well, not for Windows users!) So a good technique is to normalize
the keys before storing them. Here we’ll just ensure that all keys are converted to lowercase. Of
course we’ll do the same later when we write the query program.
We’ll change the code above by setting up a global dictionary, initially empty: The statement thedict
= {} inserted at line 3 will do this. Then instead of printing the information at line 17, we’ll add the
filename and path to the dictionary. The code will need to check whether the key already exists:
Chapter 21: A Case Study: Indexing your files 338
After running for a while the program terminates. We can interactively confirm that the dictionary
seems to have been built correctly:
1 >>> len(thedict)
2 14861
3 >>> thedict["python.exe"]
4 ['C:\\Python32\\python.exe']
5 >>> thedict["logo.png"]
6 ['C:\\Python32\\Lib\\site-packages\\PyQt4\\doc\\html\\_static\\logo.png',
7 'C:\\Python32\\Lib\\site-packages\\PyQt4\\doc\\sphinx\\static\\logo.png',
8 'C:\\Python32\\Lib\\site-packages\\PyQt4\\examples\\demos\\textedit\\images\\logo.p\
9 ng',
10 'C:\\Python32\\Lib\\site-packages\\sphinx-1.1.3-py3.2.egg\\sphinx\\themes\\scrolls\\
11 \static\\logo.png']
12 >>>
It would be nice to add a progress bar while the crawler is running: a typical technique is to print
dots to show progress. We’ll introduce a count of how many files have been indexed (this can be a
global variable), and after we’ve handled the current file, we’ll add this code:
1 filecount += 1
2 if filecount % 100 == 0:
3 print(".", end="")
4 if filecount % 5000 == 0:
5 print()
As we complete each 100 files we print a dot. After every 50 dots we start a new line. You’ll need to
also create the global variable, initialize it to zero, and remember to declare the variable as global in
the crawler.
The main calling code can now print some statistics for us. It becomes
Chapter 21: A Case Study: Indexing your files 339
1 crawl_files("C:\\Python32")
2 print() # End the last line of dots ...
3 print("Indexed {0} files, {1} entries in the dictionary.".
4 format(filecount, len(thedict)))
1 >>>
2 ..................................................
3 ..................................................
4 ..................................................
5 ....................................
6 Indexed 18635 files, 14861 entries in the dictionary.
7 >>>
It is reassuring to look at the properties of the folder in our operating system, and note that it counts
exactly the same number of files as our program does!
1 import json
2
3 f = open("C:\\temp\\mydict.txt", "w")
4 json.dump(thedict, f)
5 f.close()
You can find the file on your disk and open it with a text editor to see what the JSON encoding looks
like.
1 import json
2
3 f = open("C:\\temp\\mydict.txt", "r")
4 dict = json.load(f)
5 f.close()
6 print("Loaded {0} filenames for querying.".format(len(dict)))
7
8 def query(filename):
9 f = filename.lower()
10 if f not in dict:
11 print("No hits for {0}".format(filename))
12 else:
13 print("{0} is at ".format(filename))
14 for p in dict[f]:
15 print("...", p)
1 >>>
2 Loaded 14861 filenames for querying.
3 >>> query('python.exe')
4 python.exe is at
5 ... C:\Python32\python.exe
6 >>> query('java.exe')
7 No hits for java.exe
8 >>> query('INDEX.HtMl')
9 INDEX.HtMl is at
10 ... C:\Python32\Lib\site-packages\cherrypy\test\static\index.html
11 ... C:\Python32\Lib\site-packages\eric5\Documentation\Source\index.html
12 ... C:\Python32\Lib\site-packages\IPython\frontend\html\notebook\static\codemirror\m\
13 ode\css\index.html
14 ... C:\Python32\Lib\site-packages\IPython\frontend\html\notebook\static\codemirror\m\
15 ode\htmlmixed\index.html
16 ... C:\Python32\Lib\site-packages\IPython\frontend\html\notebook\static\codemirror\m\
17 ode\javascript\index.html
18 ... C:\Python32\Lib\site-packages\IPython\frontend\html\notebook\static\codemirror\m\
19 ode\markdown\index.html
20 ... C:\Python32\Lib\site-packages\IPython\frontend\html\notebook\static\codemirror\m\
21 ode\python\index.html
22 ... C:\Python32\Lib\site-packages\IPython\frontend\html\notebook\static\codemirror\m\
23 ode\rst\index.html
24 ... C:\Python32\Lib\site-packages\IPython\frontend\html\notebook\static\codemirror\m\
25 ode\xml\index.html
Chapter 21: A Case Study: Indexing your files 341
26 ... C:\Python32\Lib\site-packages\pygame\docs\index.html
27 ... C:\Python32\Lib\site-packages\pygame\docs\ref\index.html
28 ... C:\Python32\Lib\site-packages\PyQt4\doc\html\index.html
29 >>>
Magically, we now get a zipped file that is about 7 times smaller than the text version. (Compres-
siion/decompression like this is often done by web servers and browsers for significantly faster
downloads.)
Now, of course, our query program needs to uncompress the data:
21.5. Glossary
deserialization
Reconstruction an in-memory object from some external text
representation
gzip
A lossless compression technique that reduces the storage size of data.
(Lossless means you can recover the original data exactly.)
JSON
JavaScript Object Notation is a format for serializing and transporting
objects, often used between web servers and web browsers that run
JavasScript. Python contains a json module to provide this capability.
serialization
Turning an object into a string (or bytes) so that it can be sent over
the internet, or saved in a file. The recipient can reconstruct a new
object from the data.
Chapter 22: Even more OOP
22.1. MyTime
As another example of a user-defined type, we’ll define a class called MyTime that records the time
of day. We’ll provide an __init__ method to ensure that every instance is created with appropriate
attributes and initialization. The class definition looks like this:
1 class MyTime:
2
3 def __init__(self, hrs=0, mins=0, secs=0):
4 """ Create a MyTime object initialized to hrs, mins, secs """
5 self.hours = hrs
6 self.minutes = mins
7 self.seconds = secs
We’ll leave it as an exercise for the readers to add a __str__ method so that MyTime objects can
print themselves decently.
The function creates a new MyTime object and returns a reference to the new object. This is called a
pure function because it does not modify any of the objects passed to it as parameters and it has
no side effects, such as updating global variables, displaying a value, or getting user input.
Here is an example of how to use this function. We’ll create two MyTime objects: current_time,
which contains the current time; and bread_time, which contains the amount of time it takes for a
breadmaker to make bread. Then we’ll use add_time to figure out when the bread will be done.
The output of this program is 12:49:30, which is correct. On the other hand, there are cases where
the result is not correct. Can you think of one?
The problem is that this function does not deal with cases where the number of seconds or minutes
adds up to more than sixty. When that happens, we have to carry the extra seconds into the minutes
column or the extra minutes into the hours column.
Here’s a better version of the function:
15 sum_t = MyTime(h, m, s)
16 return sum_t
This function is starting to get bigger, and still doesn’t work for all possible cases. Later we will
suggest an alternative approach that yields better code.
22.3. Modifiers
There are times when it is useful for a function to modify one or more of the objects it gets as
parameters. Usually, the caller keeps a reference to the objects it passes, so any changes the function
makes are visible to the caller. Functions that work this way are called modifiers.
increment, which adds a given number of seconds to a MyTime object, would be written most
naturally as a modifier. A rough draft of the function looks like this:
The first line performs the basic operation; the remainder deals with the special cases we saw before.
Is this function correct? What happens if the parameter seconds is much greater than sixty? In that
case, it is not enough to carry once; we have to keep doing it until seconds is less than sixty. One
solution is to replace the if statements with while statements:
This function is now correct when seconds is not negative, and when hours does not exceed 23, but
it is not a particularly good solution.
Chapter 22: Even more OOP 346
1 class MyTime:
2 # Previous method definitions here...
3
4 def increment(self, seconds):
5 self.seconds += seconds
6
7 while self.seconds >= 60:
8 self.seconds -= 60
9 self.minutes += 1
10
11 while self.minutes >= 60:
12 self.minutes -= 60
13 self.hours += 1
The transformation is purely mechanical — we move the definition into the class definition and
(optionally) change the name of the first parameter to self, to fit with Python style conventions.
Now we can invoke increment using the syntax for invoking a method.
1 current_time.increment(500)
Again, the object on which the method is invoked gets assigned to the first parameter, self. The
second parameter, seconds gets the value 500.
1 class MyTime:
2 # ...
3
4 def to_seconds(self):
5 """ Return the number of seconds represented
6 by this instance
7 """
8 return self.hours * 3600 + self.minutes * 60 + self.seconds
Now, all we need is a way to convert from an integer back to a MyTime object. Supposing we have
tsecs seconds, some integer division and mod operators can do this for us:
You might have to think a bit to convince yourself that this technique to convert from one base to
another is correct.
In OOP we’re really trying to wrap together the data and the operations that apply to it. So we’d
like to have this logic inside the MyTime class. A good solution is to rewrite the class initializer so
that it can cope with initial values of seconds or minutes that are outside the normalized values. (A
normalized time would be something like 3 hours 12 minutes and 20 seconds. The same time, but
unnormalized could be 2 hours 70 minutes and 140 seconds.)
Let’s rewrite a more powerful initializer for MyTime:
1 class MyTime:
2 # ...
3
4 def __init__(self, hrs=0, mins=0, secs=0):
5 """ Create a new MyTime object initialized to hrs, mins, secs.
6 The values of mins and secs may be outside the range 0-59,
7 but the resulting MyTime object will be normalized.
8 """
9
10 # Calculate total seconds to represent
11 totalsecs = hrs*3600 + mins*60 + secs
12 self.hours = totalsecs // 3600 # Split in h, m, s
13 leftoversecs = totalsecs % 3600
14 self.minutes = leftoversecs // 60
15 self.seconds = leftoversecs % 60
This version is much shorter than the original, and it is much easier to demonstrate or reason that
it is correct.
22.6. Generalization
In some ways, converting from base 60 to base 10 and back is harder than just dealing with times.
Base conversion is more abstract; our intuition for dealing with times is better.
But if we have the insight to treat times as base 60 numbers and make the investment of writing the
conversions, we get a program that is shorter, easier to read and debug, and more reliable.
It is also easier to add features later. For example, imagine subtracting two MyTime objects to find
the duration between them. The naive approach would be to implement subtraction with borrowing.
Using the conversion functions would be easier and more likely to be correct.
Ironically, sometimes making a problem harder (or more general) makes the programming easier,
because there are fewer special cases and fewer opportunities for error.
Specialization versus Generalization
Computer Scientists are generally fond of specializing their types, while mathematicians often take
the opposite approach, and generalize everything.
What do we mean by this?
If we ask a mathematician to solve a problem involving weekdays, days of the century, playing cards,
time, or dominoes, their most likely response is to observe that all these objects can be represented
by integers. Playing cards, for example, can be numbered from 0 to 51. Days within the century
can be numbered. Mathematicians will say “These things are enumerable — the elements can be
uniquely numbered (and we can reverse this numbering to get back to the original concept). So let’s
number them, and confine our thinking to integers. Luckily, we have powerful techniques and a good
understanding of integers, and so our abstractions — the way we tackle and simplify these problems
— is to try to reduce them to problems about integers.”
Computer Scientists tend to do the opposite. We will argue that there are many integer operations
that are simply not meaningful for dominoes, or for days of the century. So we’ll often define new
specialized types, like MyTime, because we can restrict, control, and specialize the operations that
are possible. Object-oriented programming is particularly popular because it gives us a good way to
bundle methods and specialized data into a new type.
Both approaches are powerful problem-solving techniques. Often it may help to try to think about
the problem from both points of view — “What would happen if I tried to reduce everything to very
few primitive types?”, versus “What would happen if this thing had its own specialized type?”
Chapter 22: Even more OOP 349
This is slightly more complicated because it operates on two MyTime objects, not just one. But we’d
prefer to write it as a method anyway — in this case, a method on the first argument:
1 class MyTime:
2 # Previous method definitions here...
3
4 def after(self, time2):
5 """ Return True if I am strictly greater than time2 """
6 if self.hours > time2.hours:
7 return True
8 if self.hours < time2.hours:
9 return False
10
11 if self.minutes > time2.minutes:
12 return True
13 if self.minutes < time2.minutes:
14 return False
15 if self.seconds > time2.seconds:
16 return True
17
18 return False
We invoke this method on one object and pass the other as an argument:
1 if current_time.after(done_time):
2 print("The bread will be done before it starts!")
We can almost read the invocation like English: If the current time is after the done time, then…
The logic of the if statements deserve special attention here. Lines 11-18 will only be reached if the
two hour fields are the same. Similarly, the test at line 16 is only executed if both times have the
same hours and the same minutes.
Could we make this easier by using our “Aha!” insight and extra work from earlier, and reducing
both times to integers? Yes, with spectacular results!
Chapter 22: Even more OOP 350
1 class MyTime:
2 # Previous method definitions here...
3
4 def after(self, time2):
5 """ Return True if I am strictly greater than time2 """
6 return self.to_seconds() > time2.to_seconds()
This is a great way to code this: if we want to tell if the first time is after the second time, turn them
both into integers and compare the integers.
1 class MyTime:
2 # Previously defined methods here...
3
4 def __add__(self, other):
5 return MyTime(0, 0, self.to_seconds() + other.to_seconds())
As usual, the first parameter is the object on which the method is invoked. The second parameter
is conveniently named other to distinguish it from self. To add two MyTime objects, we create and
return a new MyTime object that contains their sum.
Now, when we apply the + operator to MyTime objects, Python invokes the __add__ method that we
have written:
1 class Point:
2 # Previously defined methods here...
3
4 def __add__(self, other):
5 return Point(self.x + other.x, self.y + other.y)
There are several ways to override the behavior of the multiplication operator: by defining a method
named __mul__, or __rmul__, or both.
If the left operand of * is a Point, Python invokes __mul__, which assumes that the other operand is
also a Point. It computes the dot product of the two Points, defined according to the rules of linear
algebra:
If the left operand of * is a primitive type and the right operand is a Point, Python invokes __rmul__,
which performs scalar multiplication:
The result is a new Point whose coordinates are a multiple of the original coordinates. If other is a
type that cannot be multiplied by a floating-point number, then __rmul__ will yield an error.
This example demonstrates both kinds of multiplication:
1 >>> p1 = Point(3, 4)
2 >>> p2 = Point(5, 7)
3 >>> print(p1 * p2)
4 43
5 >>> print(2 * p2)
6 (10, 14)
What happens if we try to evaluate p2 * 2? Since the first parameter is a Point, Python invokes
__mul__ with 2 as the second argument. Inside __mul__, the program tries to access the x coordinate
of other, which fails because an integer has no attributes:
1 >>> print(p2 * 2)
2 AttributeError: 'int' object has no attribute 'x'
Unfortunately, the error message is a bit opaque. This example demonstrates some of the difficulties
of object-oriented programming. Sometimes it is hard enough just to figure out what code is running.
Chapter 22: Even more OOP 352
22.9. Polymorphism
Most of the methods we have written only work for a specific type. When we create a new object,
we write methods that operate on that type.
But there are certain operations that we will want to apply to many types, such as the arithmetic
operations in the previous sections. If many types support the same set of operations, we can write
functions that work on any of those types.
For example, the multadd operation (which is common in linear algebra) takes three parameters; it
multiplies the first two and then adds the third. We can write it in Python like this:
This function will work for any values of x and y that can be multiplied and for any value of z that
can be added to the product.
We can invoke it with numeric values:
Or with Points:
1 >>> p1 = Point(3, 4)
2 >>> p2 = Point(5, 7)
3 >>> print(multadd (2, p1, p2))
4 (11, 15)
5 >>> print(multadd (p1, p2, 1))
6 44
In the first case, the Point is multiplied by a scalar and then added to another Point. In the second
case, the dot product yields a numeric value, so the third parameter also has to be a numeric value.
A function like this that can take arguments with different types is called polymorphic.
As another example, consider the function front_and_back, which prints a list twice, forward and
backward:
Chapter 22: Even more OOP 353
1 def front_and_back(front):
2 import copy
3 back = copy.copy(front)
4 back.reverse()
5 print(str(front) + str(back))
Because the reverse method is a modifier, we make a copy of the list before reversing it. That way,
this function doesn’t modify the list it gets as a parameter.
Here’s an example that applies front_and_back to a list:
Of course, we intended to apply this function to lists, so it is not surprising that it works. What
would be surprising is if we could apply it to a Point.
To determine whether a function can be applied to a new type, we apply Python’s fundamental rule
of polymorphism, called the duck typing rule: If all of the operations inside the function can be
applied to
the type, the function can be applied to the type. The operations in the front_and_back function
include copy, reverse, and print.
Not all programming languages define polymorphism in this way. Look up duck typing, and see if
you can figure out why it has this name.
copy works on any object, and we have already written a __str__ method for Point objects, so all
we need is a reverse method in the Point class:
1 def reverse(self):
2 (self.x , self.y) = (self.y, self.x)
1 >>> p = Point(3, 4)
2 >>> front_and_back(p)
3 (3, 4)(4, 3)
The most interesting polymorphism is the unintentional kind, where we discover that a function we
have already written can be applied to a type for which we never planned.
22.10. Glossary
Chapter 22: Even more OOP 354
1 dot product
2 An operation defined in linear algebra that multiplies two `Point`s and
3 yields a numeric value.
4
5 functional programming style
6 A style of program design in which the majority of functions are pure.
7
8 modifier
9 A function or method that changes one or more of the objects it receives
10 as parameters. Most modifier functions are void (do not return a value).
11
12 normalized
13 Data is said to be normalized if it fits into some reduced range or set
14 of rules. We usually normalize our angles to values in the range
15 \[0..360). We normalize minutes and seconds to be values in the range
16 \[0..60). And we'd be surprised if the local store advertised its cold
17 drinks at "One dollar, two hundred and fifty cents".
18
19 operator overloading
20 Extending built-in operators ( `+`, `-`, `*`, `>`, `<`, etc.) so that
21 they do different things for different types of arguments. We've seen
22 early in the book how `+` is overloaded for numbers and strings, and
23 here we've shown how to further overload it for user-defined types.
24
25 polymorphic
26 A function that can operate on more than one type. Notice the subtle
27 distinction: overloading has different functions (all with the same
28 name) for different types, whereas a polymorphic function is a single
29 function that can work for a range of types.
30
31 pure function
32 A function that does not modify any of the objects it receives as
33 parameters. Most pure functions are fruitful rather than void.
34
35 scalar multiplication
36 An operation defined in linear algebra that multiplies each of the
37 coordinates of a `Point` by a numeric value.
22.11. Exercises
1. Write a Boolean function between that takes two MyTime objects, t1 and t2, as arguments, and
Chapter 22: Even more OOP 355
returns True if the invoking object falls between the two times. Assume t1 <= t2, and make the
test closed at the lower bound and open at the upper bound, i.e. return True if t1 <= obj < t2.
if t1 > t2: …
6. Can physical time be negative, or must time always move in the forward direction? Some serious
physicists
think this is not such a dumb question. See what you can find on the Internet about this.
Chapter 23: Collections of objects
23.1. Composition
By now, we have seen several examples of composition. One of the first examples was using a method
invocation as part of an expression. Another example is the nested structure of statements; we can
put an if statement within a while loop, within another if statement, and so on.
Having seen this pattern, and having learned about lists and objects, we should not be surprised to
learn that we can create lists of objects. We can also create objects that contain lists (as attributes);
we can create lists that contain lists; we can create objects that contain objects; and so on.
In this chapter and the next, we will look at some examples of these combinations, using Card objects
as an example.
1 Spades --> 3
2 Hearts --> 2
3 Diamonds --> 1
4 Clubs --> 0
Chapter 23: Collections of objects 357
An obvious feature of this mapping is that the suits map to integers in order, so we can compare
suits by comparing integers. The mapping for ranks is fairly obvious; each of the numerical ranks
maps to the corresponding integer, and for face cards:
1 Jack --> 11
2 Queen --> 12
3 King --> 13
The reason we are using mathematical notation for these mappings is that they are not part of the
Python program. They are part of the program design, but they never appear explicitly in the code.
The class definition for the Card type looks like this:
1 class Card:
2 def __init__(self, suit=0, rank=0):
3 self.suit = suit
4 self.rank = rank
As usual, we provide an initialization method that takes an optional parameter for each attribute.
To create some objects, representing say the 3 of Clubs and the Jack of Diamonds, use these
commands:
1 three_of_clubs = Card(0, 3)
2 card1 = Card(1, 11)
In the first case above, for example, the first argument, 0, represents the suit Clubs.
Save this code for later use …
In the next chapter we assume that we have save the Cards class, and the upcoming Deck class in a
file called Cards.py.
1 class Card:
2 suits = ["Clubs", "Diamonds", "Hearts", "Spades"]
3 ranks = ["narf", "Ace", "2", "3", "4", "5", "6", "7",
4 "8", "9", "10", "Jack", "Queen", "King"]
5
6 def __init__(self, suit=0, rank=0):
7 self.suit = suit
8 self.rank = rank
9
10 def __str__(self):
11 return (self.ranks[self.rank] + " of " + self.suits[self.suit])
A class attribute is defined outside of any method, and it can be accessed from any of the methods
in the class.
Inside __str__, we can use suits and ranks to map the numerical values of suit and rank to strings.
For example, the expression self.suits[self.suit] means use the attribute suit from the object
self as an index into the class attribute named suits, and select the appropriate string.
The reason for the "narf" in the first element in ranks is to act as a place keeper for the zero-eth
element of the list, which will never be used. The only valid ranks are 1 to 13. This wasted item is
not entirely necessary. We could have started at 0, as usual, but it is less confusing to encode the
rank 2 as integer 2, 3 as 3, and so on.
With the methods we have so far, we can create and print cards:
Class attributes like suits are shared by all Card objects. The advantage of this is that we can use
any Card object to access the class attributes:
Because every Card instance references the same class attribute, we have an aliasing situation. The
disadvantage is that if we modify a class attribute, it affects every instance of the class. For example,
if we decide that Jack of Diamonds should really be called Jack of Swirly Whales, we could do this:
Chapter 23: Collections of objects 359
The problem is that all of the Diamonds just became Swirly Whales:
1 >>> print(card2)
2 3 of Swirly Whales
With this machinery in place, the relational operators now work as we’d like them to:
23.5. Decks
Now that we have objects to represent Cards, the next logical step is to define a class to represent a
Deck. Of course, a deck is made up of cards, so each Deck object will contain a list of cards as an
attribute. Many card games will need at least two different decks — a red deck and a blue deck.
The following is a class definition for the Deck class. The initialization method creates the attribute
cards and generates the standard pack of fifty-two cards:
1 class Deck:
2 def __init__(self):
3 self.cards = []
4 for suit in range(4):
5 for rank in range(1, 14):
6 self.cards.append(Card(suit, rank))
The easiest way to populate the deck is with a nested loop. The outer loop enumerates the suits from
0 to 3. The inner loop enumerates the ranks from 1 to 13. Since the outer loop iterates four times,
and the inner loop iterates thirteen times, the total number of times the body is executed is fifty-two
(thirteen times four). Each iteration creates a new instance of Card with the current suit and rank,
and appends that card to the cards list.
With this in place, we can instantiate some decks:
1 red_deck = Deck()
2 blue_deck = Deck()
1 class Deck:
2 ...
3 def print_deck(self):
4 for card in self.cards:
5 print(card)
Here, and from now on, the ellipsis (...) indicates that we have omitted the other methods in the
class.
As an alternative to print_deck, we could write a __str__ method for the Deck class. The advantage
of __str__ is that it is more flexible. Rather than just printing the contents of the object, it generates
Chapter 23: Collections of objects 362
a string representation that other parts of the program can manipulate before printing, or store for
later use.
Here is a version of __str__ that returns a string representation of a Deck. To add a bit of pizzazz, it
arranges the cards in a cascade where each card is indented one space more than the previous card:
1 class Deck:
2 ...
3 def __str__(self):
4 s = ""
5 for i in range(len(self.cards)):
6 s = s + " " * i + str(self.cards[i]) + "\n"
7 return s
This example demonstrates several features. First, instead of traversing self.cards and assigning
each card to a variable, we are using i as a loop variable and an index into the list of cards.
Second, we are using the string multiplication operator to indent each card by one more space than
the last. The expression " " * i yields a number of spaces equal to the current value of i.
Third, instead of using the print command to print the cards, we use the str function. Passing an
object as an argument to str is equivalent to invoking the __str__ method on the object.
Finally, we are using the variable s as an accumulator. Initially, s is the empty string. Each time
through the loop, a new string is generated and concatenated with the old value of s to get the new
value. When the loop ends, s contains the complete string representation of the Deck, which looks
like this:
And so on. Even though the result appears on 52 lines, it is one long string that contains newlines.
1 rng.randrange(0, len(self.cards))
An easy way to shuffle the deck is by traversing the cards and swapping each card with a randomly
chosen one. It is possible that the card will be swapped with itself, but that is fine. In fact, if we
precluded that possibility, the order of the cards would be less than entirely random:
1 class Deck:
2 ...
3 def shuffle(self):
4 import random
5 rng = random.Random() # Create a random generator
6 num_cards = len(self.cards)
7 for i in range(num_cards):
8 j = rng.randrange(i, num_cards)
9 (self.cards[i], self.cards[j]) = (self.cards[j], self.cards[i])
Rather than assume that there are fifty-two cards in the deck, we get the actual length of the list and
store it in num_cards.
For each card in the deck, we choose a random card from among the cards that haven’t been shuffled
yet. Then we swap the current card (i) with the selected card (j). To swap the cards we use a tuple
assignment:
While this is a good shuffling method, a random number generator object also has a shuffle method
that can shuffle elements in a list, in place. So we could rewrite this function to use the one provided
for us:
Chapter 23: Collections of objects 364
1 class Deck:
2 ...
3 def shuffle(self):
4 import random
5 rng = random.Random() # Create a random generator
6 rng.shuffle(self.cards) # uUse its shuffle method
1 class Deck:
2 ...
3 def remove(self, card):
4 if card in self.cards:
5 self.cards.remove(card)
6 return True
7 else:
8 return False
The in operator returns True if the first operand is in the second. If the first operand is an object,
Python uses the object’s __eq__ method to determine equality with items in the list. Since the __eq__
we provided in the Card class checks for deep equality, the remove method checks for deep equality.
To deal cards, we want to remove and return the top card. The list method pop provides a convenient
way to do that:
1 class Deck:
2 ...
3 def pop(self):
4 return self.cards.pop()
Actually, pop removes the last card in the list, so we are in effect dealing from the bottom of the
deck.
One more operation that we are likely to want is the Boolean function is_empty, which returns True
if the deck contains no cards:
Chapter 23: Collections of objects 365
1 class Deck:
2 ...
3 def is_empty(self):
4 return self.cards == []
23.9. Glossary
1 encode
2 To represent one type of value using another type of value by
3 constructing a mapping between them.
4
5 class attribute
6 A variable that is defined inside a class definition but outside any
7 method. Class attributes are accessible from any method in the class and
8 are shared by all instances of the class.
9
10 accumulator
11 A variable used in a loop to accumulate a series of values, such as by
12 concatenating them onto a string or adding them to a running sum.
23.10. Exercises
1. Modify cmp so that Aces are ranked higher than Kings.
Chapter 24: Inheritance
24.1. Inheritance
The language feature most often associated with object-oriented programming is inheritance.
Inheritance is the ability to define a new class that is a modified version of an existing class.
The primary advantage of this feature is that you can add new methods to a class without modifying
the existing class. It is called inheritance because the new class inherits all of the methods of the
existing class. Extending this metaphor, the existing class is sometimes called the parent class. The
new class may be called the child class or sometimes subclass.
Inheritance is a powerful feature. Some programs that would be complicated without inheritance
can be written concisely and simply with it. Also, inheritance can facilitate code reuse, since you
can customize the behavior of parent classes without having to modify them. In some cases, the
inheritance structure reflects the natural structure of the problem, which makes the program easier
to understand.
On the other hand, inheritance can make programs difficult to read. When a method is invoked, it is
sometimes not clear where to find its definition. The relevant code may be scattered among several
modules. Also, many of the things that can be done using inheritance can be done as elegantly (or
more so) without it. If the natural structure of the problem does not lend itself to inheritance, this
style of programming can do more harm than good.
In this chapter we will demonstrate the use of inheritance as part of a program that plays the card
game Old Maid. One of our goals is to write code that could be reused to implement other card
games.
We add the code in this chapter to our Cards.py file from the previous chapter. In the class definition,
the name of the parent class appears in parentheses:
1 class Hand(Deck):
2 pass
This statement indicates that the new Hand class inherits from the existing Deck class.
The Hand constructor initializes the attributes for the hand, which are name and cards. The string
name identifies this hand, probably by the name of the player that holds it. The name is an optional
parameter with the empty string as a default value. cards is the list of cards in the hand, initialized
to the empty list:
1 class Hand(Deck):
2 def __init__(self, name=""):
3 self.cards = []
4 self.name = name
For just about any card game, it is necessary to add and remove cards from the deck. Removing
cards is already taken care of, since Hand inherits remove from Deck. But we have to write add:
1 class Hand(Deck):
2 ...
3 def add(self, card):
4 self.cards.append(card)
Again, the ellipsis indicates that we have omitted other methods. The list append method adds the
new card to the end of the list of cards.
1 class Deck:
2 ...
3 def deal(self, hands, num_cards=999):
4 num_hands = len(hands)
5 for i in range(num_cards):
6 if self.is_empty():
7 break # Break if out of cards
8 card = self.pop() # Take the top card
9 hand = hands[i % num_hands] # Whose turn is next?
10 hand.add(card) # Add the card to the hand
The second parameter, num_cards, is optional; the default is a large number, which effectively means
that all of the cards in the deck will get dealt.
The loop variable i goes from 0 to num_cards-1. Each time through the loop, a card is removed from
the deck using the list method pop, which removes and returns the last item in the list.
The modulus operator (%) allows us to deal cards in a round robin (one card at a time to each hand).
When i is equal to the number of hands in the list, the expression i % num_hands wraps around to
the beginning of the list (index 0).
It’s not a great hand, but it has the makings of a straight flush.
Although it is convenient to inherit the existing methods, there is additional information in a Hand
object we might want to include when we print one. To do that, we can provide a __str__ method
in the Hand class that overrides the one in the Deck class:
Chapter 24: Inheritance 369
1 class Hand(Deck)
2 def __str__(self):
3 s = "Hand " + self.name
4 if self.is_empty():
5 s += " is empty\n"
6 else:
7 s += " contains\n"
8 return s + Deck.__str__(self)
Initially, s is a string that identifies the hand. If the hand is empty, the program appends the words
is empty and returns s.
Otherwise, the program appends the word contains and the string representation of the Deck,
computed by invoking the __str__ method in the Deck class on self.
It may seem odd to send self, which refers to the current Hand, to a Deck method, until you remember
that a Hand is a kind of Deck. Hand objects can do everything Deck objects can, so it is legal to send
a Hand to a Deck method.
In general, it is always legal to use an instance of a subclass in place of an instance of a parent class.
1 class CardGame:
2 def __init__(self):
3 self.deck = Deck()
4 self.deck.shuffle()
This is the first case we have seen where the initialization method performs a significant computa-
tion, beyond initializing attributes.
To implement specific games, we can inherit from CardGame and add features for the new game. As
an example, we’ll write a simulation of Old Maid.
The object of Old Maid is to get rid of cards in your hand. You do this by matching cards by rank
and color. For example, the 4 of Clubs matches the 4 of Spades since both suits are black. The Jack
of Hearts matches the Jack of Diamonds since both are red.
To begin the game, the Queen of Clubs is removed from the deck so that the Queen of Spades has
no match. The fifty-one remaining cards are dealt to the players in a round robin. After the deal, all
players match and discard as many cards as possible.
Chapter 24: Inheritance 370
When no more matches can be made, play begins. In turn, each player picks a card (without looking)
from the closest neighbor to the left who still has cards. If the chosen card matches a card in the
player’s hand, the pair is removed. Otherwise, the card is added to the player’s hand. Eventually all
possible matches are made, leaving only the Queen of Spades in the loser’s hand.
In our computer simulation of the game, the computer plays all hands. Unfortunately, some nuances
of the real game are lost. In a real game, the player with the Old Maid goes to some effort to get their
neighbor to pick that card, by displaying it a little more prominently, or perhaps failing to display
it more prominently, or even failing to fail to display that card more prominently. The computer
simply picks a neighbor’s card at random.
1 class OldMaidHand(Hand):
2 def remove_matches(self):
3 count = 0
4 original_cards = self.cards[:]
5 for card in original_cards:
6 match = Card(3 - card.suit, card.rank)
7 if match in self.cards:
8 self.cards.remove(card)
9 self.cards.remove(match)
10 print("Hand {0}: {1} matches {2}"
11 .format(self.name, card, match))
12 count += 1
13 return count
We start by making a copy of the list of cards, so that we can traverse the copy while removing cards
from the original. Since self.cards is modified in the loop, we don’t want to use it to control the
traversal. Python can get quite confused if it is traversing a list that is changing!
For each card in the hand, we figure out what the matching card is and go looking for it. The match
card has the same rank and the other suit of the same color. The expression 3 - card.suit turns
a Club (suit 0) into a Spade (suit 3) and a Diamond (suit 1) into a Heart (suit 2). You should satisfy
yourself that the opposite operations also work. If the match card is also in the hand, both cards are
removed.
The following example demonstrates how to use remove_matches:
Chapter 24: Inheritance 371
Notice that there is no __init__ method for the OldMaidHand class. We inherit it from Hand.
1 class OldMaidGame(CardGame):
2 def play(self, names):
3 # Remove Queen of Clubs
4 self.deck.remove(Card(0,12))
5
6 # Make a hand for each player
7 self.hands = []
8 for name in names:
9 self.hands.append(OldMaidHand(name))
10
11 # Deal the cards
12 self.deck.deal(self.hands)
13 print("---------- Cards have been dealt")
14 self.print_hands()
15
16 # Remove initial matches
17 matches = self.remove_all_matches()
18 print("---------- Matches discarded, play begins")
19 self.print_hands()
20
21 # Play until all 50 cards are matched
22 turn = 0
23 num_hands = len(self.hands)
24 while matches < 25:
25 matches += self.play_one_turn(turn)
26 turn = (turn + 1) % num_hands
27
28 print("---------- Game is Over")
29 self.print_hands()
1 class OldMaidGame(CardGame):
2 ...
3 def remove_all_matches(self):
4 count = 0
5 for hand in self.hands:
6 count += hand.remove_matches()
7 return count
Chapter 24: Inheritance 373
count is an accumulator that adds up the number of matches in each hand. When we’ve gone through
every hand, the total is returned (count).
When the total number of matches reaches twenty-five, fifty cards have been removed from the
hands, which means that only one card is left and the game is over.
The variable turn keeps track of which player’s turn it is. It starts at 0 and increases by one each
time; when it reaches num_hands, the modulus operator wraps it back around to 0.
The method play_one_turn takes a parameter that indicates whose turn it is. The return value is the
number of matches made during this turn:
1 class OldMaidGame(CardGame):
2 ...
3 def play_one_turn(self, i):
4 if self.hands[i].is_empty():
5 return 0
6 neighbor = self.find_neighbor(i)
7 picked_card = self.hands[neighbor].pop()
8 self.hands[i].add(picked_card)
9 print("Hand", self.hands[i].name, "picked", picked_card)
10 count = self.hands[i].remove_matches()
11 self.hands[i].shuffle()
12 return count
If a player’s hand is empty, that player is out of the game, so he or she does nothing and returns 0.
Otherwise, a turn consists of finding the first player on the left that has cards, taking one card from
the neighbor, and checking for matches. Before returning, the cards in the hand are shuffled so that
the next player’s choice is random.
The method find_neighbor starts with the player to the immediate left and continues around the
circle until it finds a player that still has cards:
1 class OldMaidGame(CardGame):
2 ...
3 def find_neighbor(self, i):
4 num_hands = len(self.hands)
5 for next in range(1,num_hands):
6 neighbor = (i + next) % num_hands
7 if not self.hands[neighbor].is_empty():
8 return neighbor
If find_neighbor ever went all the way around the circle without finding cards, it would return
None and cause an error elsewhere in the program. Fortunately, we can prove that that will never
happen (as long as the end of the game is detected correctly).
Chapter 24: Inheritance 374
We have omitted the print_hands method. You can write that one yourself.
The following output is from a truncated form of the game where only the top fifteen cards (tens
and higher) were dealt to three players. With this small deck, play stops after seven matches instead
of twenty-five.
38 Jack of Hearts
39 King of Diamonds
40
41 Hand Chris contains
42 Jack of Diamonds
43 King of Clubs
44 10 of Hearts
45
46 Hand Allen picked King of Diamonds
47 Hand Allen: King of Hearts matches King of Diamonds
48 Hand Jeff picked 10 of Hearts
49 Hand Chris picked Jack of Clubs
50 Hand Allen picked Jack of Hearts
51 Hand Jeff picked Jack of Diamonds
52 Hand Chris picked Queen of Spades
53 Hand Allen picked Jack of Diamonds
54 Hand Allen: Jack of Hearts matches Jack of Diamonds
55 Hand Jeff picked King of Clubs
56 Hand Chris picked King of Spades
57 Hand Allen picked 10 of Hearts
58 Hand Allen: 10 of Diamonds matches 10 of Hearts
59 Hand Jeff picked Queen of Spades
60 Hand Chris picked Jack of Spades
61 Hand Chris: Jack of Clubs matches Jack of Spades
62 Hand Jeff picked King of Spades
63 Hand Jeff: King of Clubs matches King of Spades
64 ---------- Game is Over
65 Hand Allen is empty
66
67 Hand Jeff contains
68 Queen of Spades
69
70 Hand Chris is empty
So Jeff loses.
24.8. Glossary
Chapter 24: Inheritance 376
1 inheritance
2 The ability to define a new class that is a modified version of a
3 previously defined class.
4
5 parent class
6 The class from which a child class inherits.
7
8 child class
9 A new class created by inheriting from an existing class; also called a
10 subclass.
24.9. Exercises
1. Add a method, print_hands, to the OldMaidGame class which traverses self.hands and prints each
hand.
2. Define a new kind of Turtle, TurtleGTX, that comes with some extra features: it can jump forward
a
given distance, and it has an odometer that keeps track of how far the turtle has travelled since it
came off the production line. (The parent class has a number of synonyms like fd, forward, back,
backward, and bk: for this exercise, just focus on putting this functionality into the forward method.)
Think carefully about how to count the distance if the turtle is asked to move forward by a negative
amount. (We would not want to buy a second-hand turtle whose odometer reading was faked
because its previous owner drove it backwards around the block too often. Try this in a car near
you, and see if the car’s odometer counts up or down when you reverse.)
3. After travelling some random distance, your turtle should break down with a flat tyre. After this
happens, raise an exception whenever forward is called. Also provide a change_tyre method that
can fix the flat.
Chapter 25: Linked lists
25.1. Embedded references
We have seen examples of attributes that refer to other objects, which we called embedded
references. A common data structure, the linked list, takes advantage of this feature.
Linked lists are made up of nodes, where each node contains a reference to the next node in the list.
In addition, each node contains a unit of data called the cargo.
A linked list is considered a recursive data structure because it has a recursive definition.
A linked list is either:
1. the empty list, represented by None, or
2. a node that contains a cargo object and a reference to a linked list.
Recursive data structures lend themselves to recursive methods.
1 class Node:
2 def __init__(self, cargo=None, next=None):
3 self.cargo = cargo
4 self.next = next
5
6 def __str__(self):
7 return str(self.cargo)
As usual, the parameters for the initialization method are optional. By default, both the cargo and
the link, next, are set to None.
The string representation of a node is just the string representation of the cargo. Since any value can
be passed to the str function, we can store any value in a list.
To test the implementation so far, we can create a Node and print it:
Chapter 25: Linked lists 378
This code creates three nodes, but we don’t have a list yet because the nodes are not linked. The
state diagram looks like this:
To link the nodes, we have to make the first node refer to the second and the second node refer to
the third:
The reference of the third node is None, which indicates that it is the end of the list. Now the state
diagram looks like this:
Now you know how to create nodes and link them into lists. What might be less clear at this point
is why.
To pass the list as a parameter, we only have to pass a reference to the first node. For example, the
function print_list takes a single node as an argument. Starting with the head of the list, it prints
each node until it gets to the end:
1 def print_list(node):
2 while node is not None:
3 print(node, end=" ")
4 node = node.next
5 print()
1 >>> print_list(node1)
2 1 2 3
Inside print_list we have a reference to the first node of the list, but there is no variable that refers
to the other nodes. We have to use the next value from each node to get to the next node.
To traverse a linked list, it is common to use a loop variable like node to refer to each of the nodes
in succession.
This diagram shows the value of list and the values that node takes on:
All we need are a base case and a way of proving that for any list, we will eventually get to the
base case. Given the recursive definition of a list, a natural base case is the empty list, represented
by None:
1 def print_backward(list):
2 if list is None: return
3 head = list
4 tail = list.next
5 print_backward(tail)
6 print(head, end=" ")
The first line handles the base case by doing nothing. The next two lines split the list into head and
tail. The last two lines print the list. The end argument of the print statement keeps Python from
printing a newline after each node.
We invoke this method as we invoked print_list:
1 >>> print_backward(node1)
2 3 2 1
If we invoke print_list on this list, it will loop forever. If we invoke print_backward, it will recurse
infinitely. This sort of behavior makes infinite lists difficult to work with.
Nevertheless, they are occasionally useful. For example, we might represent a number as a list of
digits and use an infinite list to represent a repeating fraction.
Regardless, it is problematic that we cannot prove that print_list and print_backward terminate.
The best we can do is the hypothetical statement, “If the list contains no loops, then these methods
will terminate.” This sort of claim is called a precondition. It imposes a constraint on one of the
parameters and describes the behavior of the method if the constraint is satisfied. You will see more
examples soon.
1 head = list
2 tail = list.next
After the first assignment, head and list have the same type and the same value. So why did we
create a new variable?
The reason is that the two variables play different roles. We think of head as a reference to a single
node, and we think of list as a reference to the first node of a list. These roles are not part of the
program; they are in the mind of the programmer.
In general we can’t tell by looking at a program what role a variable plays. This ambiguity can be
useful, but it can also make programs difficult to read. We often use variable names like node and
list to document how we intend to use a variable and sometimes create additional variables to
disambiguate.
We could have written print_backward without head and tail, which makes it more concise but
possibly less clear:
Chapter 25: Linked lists 382
1 def print_backward(list):
2 if list is None: return
3 print_backward(list.next)
4 print(list, end=" ")
Looking at the two function calls, we have to remember that print_backward treats its argument as
a collection and print treats its argument as a single object.
The fundamental ambiguity theorem describes the ambiguity that is inherent in a reference to a
node: A variable that refers to a node might treat the node as a single object or as the first in a list
of nodes.
1 def remove_second(list):
2 if list is None: return
3 first = list
4 second = list.next
5 # Make the first node refer to the third
6 first.next = second.next
7 # Separate the second node from the rest of the list
8 second.next = None
9 return second
Again, we are using temporary variables to make the code more readable. Here is how to use this
method:
1 >>> print_list(node1)
2 1 2 3
3 >>> removed = remove_second(node1)
4 >>> print_list(removed)
5 2
6 >>> print_list(node1)
7 1 3
What happens if you invoke this method and pass a list with only oneelement (a singleton)? What
happens if you pass the empty list as an argument? Is there a precondition for this method? If so, fix
the method to handle a violation of the precondition in a reasonable way.
1 def print_backward_nicely(list):
2 print("[", end=" ")
3 print_backward(list)
4 print("]")
Again, it is a good idea to check methods like this to see if they work with special cases like an empty
list or a singleton.
When we use this method elsewhere in the program, we invoke print_backward_nicely directly, and
it invokes print_backward on our behalf. In that sense, print_backward_nicely acts as a wrapper,
and it uses print_backward as a helper.
1 class LinkedList:
2 def __init__(self):
3 self.length = 0
4 self.head = None
One nice thing about the LinkedList class is that it provides a natural place to put wrapper functions
like print_backward_nicely, which we can make a method of the LinkedList class:
1 class LinkedList:
2 ...
3 def print_backward(self):
4 print("[", end=" ")
5 if self.head is not None:
6 self.head.print_backward()
7
8 class Node:
9 ...
10 def print_backward(self):
11 if self.next is not None:
12 tail = self.next
13 tail.print_backward()
14 print(self.cargo, end=" ")
Just to make things confusing, we renamed print_backward_nicely. Now there are two methods
named print_backward: one in the Node class (the helper); and one in the LinkedList class (the
wrapper). When the wrapper invokes self.head.print_backward, it is invoking the helper, because
self.head is a Node object.
Another benefit of the LinkedList class is that it makes it easier to add or remove the first element of
a list. For example, add_first is a method for LinkedLists; it takes an item of cargo as an argument
and puts it at the beginning of the list:
1 class LinkedList:
2 ...
3 def add_first(self, cargo):
4 node = Node(cargo)
5 node.next = self.head
6 self.head = node
7 self.length += 1
As usual, you should check code like this to see if it handles the special cases. For example, what
happens if the list is initially empty?
Chapter 25: Linked lists 385
25.10. Invariants
Some lists are well formed; others are not. For example, if a list contains a loop, it will cause many of
our methods to crash, so we might want to require that lists contain no loops. Another requirement
is that the length value in the LinkedList object should be equal to the actual number of nodes in
the list.
Requirements like these are called invariants because, ideally, they should be true of every object
all the time. Specifying invariants for objects is a useful programming practice because it makes it
easier to prove the correctness of code, check the integrity of data structures, and detect errors.
One thing that is sometimes confusing about invariants is that there are times when they are
violated. For example, in the middle of add_first, after we have added the node but before we
have incremented length,the invariant is violated. This kind of violation is acceptable; in fact, it
is often impossible to modify an object without violating an invariant for at least a little while.
Normally, we require that every method that violates an invariant must restore the invariant.
If there is any significant stretch of code in which the invariant is violated, it is important for the
comments to make that clear, so that no operations are performed that depend on the invariant.
25.11. Glossary
1 embedded reference
2 A reference stored in an attribute of an object.
3
4 linked list
5 A data structure that implements a collection using a sequence of linked
6 nodes.
7
8 node
9 An element of a list, usually implemented as an object that contains a
10 reference to another object of the same type.
11
12 cargo
13 An item of data contained in a node.
14
15 link
16 An embedded reference used to link one object to another.
17
18 precondition
19 An assertion that must be true in order for a method to work correctly.
20
21 fundamental ambiguity theorem
Chapter 25: Linked lists 386
25.12. Exercises
1. By convention, lists are often printed in brackets with commas between the elements, as in [1, 2,
3].
push
Add a new item to the stack.
pop
Remove and return an item from the stack. The item that is returned is always the last one that was
added.
is_empty
Check whether the stack is empty.
A stack is sometimes called a “Last in, First out” or LIFO data structure, because the last item added
is the first to be removed.
1 class Stack:
2 def __init__(self):
3 self.items = []
4
5 def push(self, item):
6 self.items.append(item)
7
8 def pop(self):
9 return self.items.pop()
10
11 def is_empty(self):
12 return (self.items == [])
A Stack object contains an attribute named items that is a list of items in the stack. The initialization
method sets items to the empty list.
To push a new item onto the stack, push appends it onto items. To pop an item off the stack, pop
uses the homonymous (same-named) list method to remove and return the last item on the list.
Finally, to check if the stack is empty, is_empty compares items to the empty list.
An implementation like this, in which the methods consist of simple invocations of existing methods,
is called a veneer. In real life, veneer is a thin coating of good quality wood used in furniture-making
Chapter 26: Stacks 389
to hide lower quality wood underneath. Computer scientists use this metaphor to describe a small
piece of code that hides the details of an implementation and provides a simpler, or more standard,
interface.
1 >>> s = Stack()
2 >>> s.push(54)
3 >>> s.push(45)
4 >>> s.push("+")
We can use is_empty and pop to remove and print all of the items on the stack:
The output is + 45 54. In other words, we just used a stack to print the items backward! Granted,
it’s not the standard format for printing a list, but by using a stack, it was remarkably easy to do.
You should compare this bit of code to the implementation of print_backward in the last chapter.
There is a natural parallel between the recursive version of print_backward and the stack algorithm
here. The difference is that print_backward uses the runtime stack to keep track of the nodes while
it traverses the list, and then prints them on the way back from the recursion. The stack algorithm
does the same thing, except that it uses a Stack object instead of the runtime stack.
2. When you get to the end of the expression, there should be exactly one operand left on the stack.
That
operand is the result.
26.6. Parsing
To implement the previous algorithm, we need to be able to traverse a string and break it into
operands and operators. This process is an example of parsing, and the results — the individual
chunks of the string — are called tokens. You might remember these words from Chapter 1.
Python provides a split method in both string objects and the re (regular expression) module. A
string’s split method splits it into a list using a single character as a delimiter. For example:
In this case, the delimiter is the space character, so the string is split at each space.
The function re.split is more powerful, allowing us to provide a regular expression instead of a
delimiter. A regular expression is a way of specifying a set of strings. For example, [A-z] is the
set of all letters and [0-9] is the set of all numbers. The ^ operator negates a set, so [^0-9] is the
set of everything that is not a number, which is exactly the set we want to use to split up postfix
expressions:
1 >>> import re
2 >>> re.split("([^0-9])", "123+456*/")
3 ['123', '+', '456', '*', '', '/', '']
The resulting list includes the operands 123 and 456 and the operators * and /. It also includes two
empty strings that are inserted after the operands.
1 def eval_postfix(expr):
2 import re
3 token_list = re.split("([^0-9])", expr)
4 stack = Stack()
5 for token in token_list:
6 if token == "" or token == " ":
7 continue
8 if token == "+":
9 sum = stack.pop() + stack.pop()
10 stack.push(sum)
11 elif token == "*":
12 product = stack.pop() * stack.pop()
13 stack.push(product)
14 else:
15 stack.push(int(token))
16 return stack.pop()
The first condition takes care of spaces and empty strings. The next two conditions handle operators.
We assume, for now, that anything else must be an operand. Of course, it would be better to check
for erroneous input and report an error message, but we’ll get to that later.
Let’s test it by evaluating the postfix form of (56 + 47) * 2:
26.9. Glossary
1 abstract data type (ADT)
2 A data type (usually a collection of objects) that is defined by a set
3 of operations but that can be implemented in a variety of ways.
4
5 client
6 A program (or the person who wrote it) that uses an ADT.
7
8 delimiter
9 A character that is used to separate tokens, such as punctuation in a
10 natural language.
11
12 generic data structure
13 A kind of data structure that can contain data of any type.
14
15 implementation
16 Code that satisfies the syntactic and semantic requirements of an
17 interface.
18
19 interface
20 The set of operations that define an ADT.
21
22 infix
23 A way of writing mathematical expressions with the operators between the
24 operands.
25
26 parse
27 To read a string of characters or tokens and analyze its grammatical structure.
28
29 postfix
30 A way of writing mathematical expressions with the operators after the
31 operands.
32
33 provider
34 The code (or the person who wrote it) that implements an ADT.
35
36 token
37 A set of characters that are treated as a unit for purposes of parsing,
38 such as the words in a natural language.
39
40 veneer
Chapter 26: Stacks 393
26.10. Exercises
1. Apply the postfix algorithm to the expression 1 2 + 3 *.This example demonstrates one of the
advantages
of postfix—there is no need to use parentheses to control the order of operations. To get the same
result in infix, we would have to write (1 + 2) * 3.
2. Write a postfix expression that is equivalent to 1 + 2 * 3.
Chapter 27: Queues
This chapter presents two ADTs: the Queue and the Priority Queue. In real life, a queue is a line
of people waiting for something. In most cases, the first person in line is the next one to be served.
There are exceptions, though. At airports, peoples whose flights are leaving soon are sometimes
taken from the middle of the queue. At supermarkets, a polite person might let someone with only
a few items go in front of them.
The rule that determines who goes next is called the queueing policy. The simplest queueing policy
is called “First in, First out”, FIFO for short. The most general queueing policy is priority queueing,
in which each person is assigned a priority and the person with the highest priority goes first,
regardless of the order of arrival. We say this is the most general policy because the priority can be
based on anything: what time a flight leaves; how many groceries the person has; or how important
the person is. Of course, not all queueing policies are fair, but fairness is in the eye of the beholder.
The Queue ADT and the Priority Queue ADT have the same set of operations. The difference is in
the semantics of the operations: a queue uses the FIFO policy; and a priority queue (as the name
suggests) uses the priority queueing policy.
1 class Queue:
2 def __init__(self):
3 self.length = 0
4 self.head = None
5
6 def is_empty(self):
7 return self.length == 0
8
9 def insert(self, cargo):
10 node = Node(cargo)
11 if self.head is None:
12 # If list is empty the new node goes first
13 self.head = node
14 else:
15 # Find the last node in the list
16 last = self.head
17 while last.next:
18 last = last.next
19 # Append the new node
20 last.next = node
21 self.length += 1
22
23 def remove(self):
24 cargo = self.head.cargo
25 self.head = self.head.next
26 self.length -= 1
27 return cargo
The methods is_empty and remove are identical to the LinkedList methods is_empty and remove_-
first. The insert method is new and a bit more complicated.
We want to insert new items at the end of the list. If the queue is empty, we just set head to refer to
the new node.
Otherwise, we traverse the list to the last node and tack the new node on the end. We can identify
the last node because its next attribute is None.
There are two invariants for a properly formed Queue object. The value of length should be the
number of nodes in the queue, and the last node should have next equal to None. Convince yourself
that this method preserves both invariants.
Chapter 27: Queues 396
1 class ImprovedQueue:
2 def __init__(self):
3 self.length = 0
4 self.head = None
5 self.last = None
6
7 def is_empty(self):
8 return self.length == 0
So far, the only change is the attribute last. It is used in insert and remove methods:
Chapter 27: Queues 397
1 class ImprovedQueue:
2 ...
3 def insert(self, cargo):
4 node = Node(cargo)
5 if self.length == 0:
6 # If list is empty, the new node is head and last
7 self.head = self.last = node
8 else:
9 # Find the last node
10 last = self.last
11 # Append the new node
12 last.next = node
13 self.last = node
14 self.length += 1
Since last keeps track of the last node, we don’t have to search for it. As a result, this method is
constant time.
There is a price to pay for that speed. We have to add a special case to remove to set last to None
when the last node is removed:
1 class ImprovedQueue:
2 ...
3 def remove(self):
4 cargo = self.head.cargo
5 self.head = self.head.next
6 self.length -= 1
7 if self.length == 0:
8 self.last = None
9 return cargo
This implementation is more complicated than the Linked Queue implementation, and it is more
difficult to demonstrate that it is correct. The advantage is that we have achieved the goal — both
insert and remove are constant time operations.
insert
Add a new item to the queue.
remove
Remove and return an item from the queue. The item that is returned is the one with the highest
priority.
is_empty
Check whether the queue is empty.
The semantic difference is that the item that is removed from the queue is not necessarily the first one
that was added. Rather, it is the item in the queue that has the highest priority. What the priorities
are and how they compare to each other are not specified by the Priority Queue implementation. It
depends on which items are in the queue.
For example, if the items in the queue have names, we might choose them in alphabetical order. If
they are bowling scores, we might go from highest to lowest, but if they are golf scores, we would go
from lowest to highest. As long as we can compare the items in the queue, we can find and remove
the one with the highest priority.
This implementation of Priority Queue has as an attribute a Python list that contains the items in
the queue.
1 class PriorityQueue:
2 def __init__(self):
3 self.items = []
4
5 def is_empty(self):
6 return not self.items
7
8 def insert(self, item):
9 self.items.append(item)
The initialization method, is_empty, and insert are all veneers on list operations. The only
interesting method is remove:
1 class PriorityQueue:
2 ...
3 def remove(self):
4 maxi = 0
5 for i in range(1, len(self.items)):
6 if self.items[i] > self.items[maxi]:
7 maxi = i
8 item = self.items[maxi]
9 del self.items[maxi]
10 return item
Chapter 27: Queues 399
At the beginning of each iteration, maxi holds the index of the biggest item (highest priority) we
have seen so far. Each time through the loop, the program compares the i‘th item to the champion.
If the new item is bigger, the value of maxi is set to i.
When the for statement completes, maxi is the index of the biggest item. This item is removed from
the list and returned.
Let’s test the implementation:
1 >>> q = PriorityQueue()
2 >>> for num in [11, 12, 14, 13]:
3 ... q.insert(num)
4 ...
5 >>> while not q.is_empty():
6 ... print(q.remove())
7 ...
8 14
9 13
10 12
11 11
If the queue contains simple numbers or strings, they are removed in numerical or alphabetical order,
from highest to lowest. Python can find the biggest integer or string because it can compare them
using the built-in comparison operators.
If the queue contains an object type, it has to provide a __gt__ method. When remove uses the >
operator to compare items, it invokes the __gt__ method for one of the items and passes the other
as a parameter. As long as the __gt__ method works correctly, the Priority Queue will work.
1 class Golfer:
2 def __init__(self, name, score):
3 self.name = name
4 self.score= score
5
6 def __str__(self):
7 return "{0:16}: {1}".format(self.name, self.score)
Chapter 27: Queues 400
__str__ uses the format method to put the names and scores in neat columns.
Next we define a version of __gt__ where the lowest score gets highest priority. As always, __gt_-
_ returns True if self is greater than other, and False otherwise.
1 class Golfer:
2 ...
3 def __gt__(self, other):
4 return self.score < other.score # Less is more
Now we are ready to test the priority queue with the Golfer class:
27.7. Glossary
1 constant time
2 An operation whose runtime does not depend on the size of the data
3 structure.
4
5 FIFO (First In, First Out)
6 a queueing policy in which the first member to arrive is the first to be
7 removed.
8
9 linear time
10 An operation whose runtime is a linear function of the size of the data
11 structure.
12
13 linked queue
Chapter 27: Queues 401
27.8. Exercises
1. Write an implementation of the Queue ADT using a Python list. Compare the performance of this
implementation to the ImprovedQueue for a range of queue lengths.
2. Write an implementation of the Priority Queue ADT using a linked list. You should keep the list
sorted so
that removal is a constant time operation. Compare the performance of this implementation with
the Python list implementation.
Chapter 28: Trees
Like linked lists, trees are made up of nodes. A common kind of tree is a binary tree, in which each
node contains a reference to two other nodes (possibly None). These references are referred to as the
left and right subtrees. Like list nodes, tree nodes also contain cargo. A state diagram for a tree looks
like this:
1 class Tree:
2 def __init__(self, cargo, left=None, right=None):
3 self.cargo = cargo
4 self.left = left
5 self.right = right
6
7 def __str__(self):
8 return str(self.cargo)
The cargo can be any type, but the left and right parameters should be tree nodes. left and right
are optional; the default value is None.
To print a node, we just print the cargo.
One way to build a tree is from the bottom up. Allocate the child nodes first:
1 left = Tree(2)
2 right = Tree(3)
Either way, the result is the tree at the beginning of the chapter.
1 def total(tree):
2 if tree is None: return 0
3 return total(tree.left) + total(tree.right) + tree.cargo
The base case is the empty tree, which contains no cargo, so the sum is 0. The recursive step makes
two recursive calls to find the sum of the child trees. When the recursive calls complete, we add the
cargo of the parent and return the total.
The nodes of an expression tree can be operands like 1 and 2 or operators like + and *. Operands are
leaf nodes; operator nodes contain references to their operands. (All of these operators are binary,
meaning they have exactly two operands.)
We can build this tree like this:
Looking at the figure, there is no question what the order of operations is; the multiplication happens
first in order to compute the second operand of the addition.
Expression trees have many uses. The example in this chapter uses trees to translate expressions to
postfix, prefix, and infix. Similar trees are used inside compilers to parse, optimize, and translate
programs.
Chapter 28: Trees 405
1 def print_tree(tree):
2 if tree is None: return
3 print(tree.cargo, end=" ")
4 print_tree(tree.left)
5 print_tree(tree.right)
In other words, to print a tree, first print the contents of the root, then print the entire left subtree,
and then print the entire right subtree. This way of traversing a tree is called a preorder, because
the contents of the root appear before the contents of the children. For the previous example, the
output is:
This format is different from both postfix and infix; it is another notation called prefix, in which
the operators appear before their operands.
You might suspect that if you traverse the tree in a different order, you will get the expression in a
different notation. For example, if you print the subtrees first and then the root node, you get:
1 def print_tree_postorder(tree):
2 if tree is None: return
3 print_tree_postorder(tree.left)
4 print_tree_postorder(tree.right)
5 print(tree.cargo, end=" ")
1 def print_tree_inorder(tree):
2 if tree is None: return
3 print_tree_inorder(tree.left)
4 print(tree.cargo, end=" ")
5 print_tree_inorder(tree.right)
Chapter 28: Trees 406
The parameter level keeps track of where we are in the tree. By default, it is initially 0. Each time
we make a recursive call, we pass level+1 because the child’s level is always one greater than the
parent’s. Each item is indented by two spaces per level. The result for the example tree is:
1 >>> print_tree_indented(tree)
2 3
3 *
4 2
5 +
6 1
If you look at the output sideways, you see a simplified version of the original figure.
Notice that we have simplified the diagram by leaving out the names of the attributes.
The parser we will write handles expressions that include numbers, parentheses, and the operators
+ and *. We assume that the input string has already been tokenized into a Python list (producing
this list is left as an exercise). The token list for (3 + 7) * 9 is:
The end token is useful for preventing the parser from reading past the end of the list.
The first function we’ll write is get_token, which takes a token list and an expected token as
parameters. It compares the expected token to the first token on the list: if they match, it removes
the token from the list and returns True; otherwise, it returns False:
Since token_list refers to a mutable object, the changes made here are visible to any other variable
that refers to the same object.
The next function, get_number, handles operands. If the next token in token_list is a number, get_-
number removes it and returns a leaf node containing the number; otherwise, it returns None.
1 def get_number(token_list):
2 x = token_list[0]
3 if type(x) != type(0): return None
4 del token_list[0]
5 return Tree(x, None, None)
Before continuing, we should test get_number in isolation. We assign a list of numbers to token_list,
extract the first, print the result, and print what remains of the token list:
The next method we need is get_product, which builds an expression tree for products. A simple
product has two numbers as operands, like 3 * 7.
Here is a version of get_product that handles simple products.
Chapter 28: Trees 408
1 def get_product(token_list):
2 a = get_number(token_list)
3 if get_token(token_list, "*"):
4 b = get_number(token_list)
5 return Tree("*", a, b)
6 return a
Assuming that get_number succeeds and returns a singleton tree, we assign the first operand to a.
If the next character is *, we get the second number and build an expression tree with a, b, and the
operator.
If the next character is anything else, then we just return the leaf node with a. Here are two examples:
The second example implies that we consider a single operand to be a kind of product. This definition
of product is counter-intuitive, but it turns out to be useful.
Now we have to deal with compound products, like like 3 * 5 * 13. We treat this expression as a
product of products, namely 3 * (5 * 13). The resulting tree is:
1 def get_product(token_list):
2 a = get_number(token_list)
3 if get_token(token_list, "*"):
4 b = get_product(token_list) # This line changed
5 return Tree("*", a, b)
6 return a
In other words, a product can be either a singleton or a tree with * at the root, a number on the left,
and a product on the right. This kind of recursive definition should be starting to feel familiar.
Let’s test the new version with a compound product:
Next we will add the ability to parse sums. Again, we use a slightly counter-intuitive definition of
sum. For us, a sum can be a tree with + at the root, a product on the left, and a sum on the right. Or,
a sum can be just a product.
If you are willing to play along with this definition, it has a nice property: we can represent any
expression (without parentheses) as a sum of products. This property is the basis of our parsing
algorithm.
get_sum tries to build a tree with a product on the left and a sum on the right. But if it doesn’t find
a +, it just builds a product.
1 def get_sum(token_list):
2 a = get_product(token_list)
3 if get_token(token_list, "+"):
4 b = get_sum(token_list)
5 return Tree("+", a, b)
6 return a
We are almost done, but we still have to handle parentheses. Anywhere in an expression where there
can be a number, there can also be an entire sum enclosed in parentheses. We just need to modify
get_number to handle subexpressions:
Chapter 28: Trees 410
1 def get_number(token_list):
2 if get_token(token_list, "("):
3 x = get_sum(token_list) # Get the subexpression
4 get_token(token_list, ")") # Remove the closing parenthesis
5 return x
6 else:
7 x = token_list[0]
8 if type(x) != type(0): return None
9 del token_list[0]
10 return Tree(x, None, None)
1 >>> token_list = [9, "*", "(", 11, "+", 5, ")", "*", 7, "end"]
2 >>> tree = get_sum(token_list)
3 >>> print_tree_postorder(tree)
4 9 11 5 + 7 * *
The parser handled the parentheses correctly; the addition happens before the multiplication.
In the final version of the program, it would be a good idea to give get_number a name more
descriptive of its new role.
1 def get_number(token_list):
2 if get_token(token_list, "("):
3 x = get_sum(token_list)
4 if not get_token(token_list, ")"):
5 raise ValueError('Missing close parenthesis")
6 return x
7 else:
8 # The rest of the function omitted
The raise statement throws the exception object which we create. In this case we simply used the
most appropriate type of built-in exception that we could find, but you should be aware that you
can create your own more specific user-defined exceptions if you need to. If the function that called
get_number, or one of the other functions in the traceback, handles the exception, then the program
can continue. Otherwise, Python will print an error message and quit.
Chapter 28: Trees 411
At the beginning of each round, the program starts at the top of the tree and asks the first question.
Depending on the answer, it moves to the left or right child and continues until it gets to a leaf node.
At that point, it makes a guess. If the guess is not correct, it asks the user for the name of the new
animal and a question that distinguishes the (bad) guess from the new animal. Then it adds a node
to the tree with the new question and the new animal.
Chapter 28: Trees 412
1 def yes(ques):
2 ans = input(ques).lower()
3 return ans[0] == "y"
4
5 def animal():
6 # Start with a singleton
7 root = Tree("bird")
8
9 # Loop until the user quits
10 while True:
11 print()
12 if not yes("Are you thinking of an animal? "): break
13
14 # Walk the tree
15 tree = root
16 while tree.left is not None:
17 prompt = tree.cargo + "? "
18 if yes(prompt):
19 tree = tree.right
20 else:
21 tree = tree.left
22
23 # Make a guess
24 guess = tree.cargo
25 prompt = "Is it a " + guess + "? "
26 if yes(prompt):
27 print("I rule!")
28 continue
29
30 # Get new information
31 prompt = "What is the animal's name? "
32 animal = input(prompt)
33 prompt = "What question would distinguish a {0} from a {1}? "
34 question = input(prompt.format(animal, guess))
35
36 # Add new information to the tree
37 tree.cargo = question
38 prompt = "If the animal were {0} the answer would be? "
39 if yes(prompt.format(animal)):
40 tree.left = Tree(guess)
41 tree.right = Tree(animal)
Chapter 28: Trees 413
42 else:
43 tree.left = Tree(animal)
44 tree.right = Tree(guess)
The function yes is a helper; it prints a prompt and then takes input from the user. If the response
begins with y or Y, the function returns True.
The condition of the outer loop of animal is True, which means it will continue until the break
statement executes, if the user is not thinking of an animal.
The inner while loop walks the tree from top to bottom, guided by the user’s responses.
When a new node is added to the tree, the new question replaces the cargo, and the two children
are the new animal and the original cargo.
One shortcoming of the program is that when it exits, it forgets everything you carefully taught it!
Fixing this problem is left as an exercise.
28.8. Glossary
1 binary operator
2 An operator that takes two operands.
3
4 binary tree
5 A tree in which each node refers to zero, one, or two dependent nodes.
6
7 child
8 One of the nodes referred to by a node.
9
10 leaf
11 A bottom-most node in a tree, with no children.
12
13 level
14 The set of nodes equidistant from the root.
15
16 parent
17 The node that refers to a given node.
18
19 postorder
20 A way to traverse a tree, visiting the children of each node before the
21 node itself.
22
23 prefix notation
24 A way of writing a mathematical expression with each operator appearing
Chapter 28: Trees 414
28.9. Exercises
1. Modify print_tree_inorder so that it puts parentheses around every operator and pair of
operands. Is
the output correct and unambiguous? Are the parentheses always necessary?
2. Write a function that takes an expression string and returns a token list.
3. Find other places in the expression tree functions where errors can occur and add appropriate
raise
The first step in debugging is to figure out which kind of error you are dealing with. Although the
following sections are organized by error type, some techniques are applicable in more than one
situation.
On the other hand, the message does tell you where in the program the problem occurred. Actually,
it tells you where Python noticed a problem, which is not necessarily where the error is. Sometimes
the error is prior to the location of the error message, often on the preceding line.
If you are building the program incrementally, you should have a good idea about where the error
is. It will be in the last line you added.
If you are copying code from a book, start by comparing your code to the book’s code very carefully.
Check every character. At the same time, remember that the book might be wrong, so if you see
something that looks like a syntax error, it might be.
Appendix A: Debugging 416
Here are some ways to avoid the most common syntax errors:
1. Make sure you are not using a Python keyword for a variable name.
2. Check that you have a colon at the end of the header of every
compound statement, including for, while, if, and def
statements.
3. Check that indentation is consistent. You may indent with either
spaces or tabs but it’s best not to mix them. Each level should be
nested the same amount.
4. Make sure that any strings in the code have matching quotation
marks.
5. If you have multiline strings with triple quotes (single or double),
make sure you have terminated the string properly. An unterminated
string may cause an invalid token error at the end of your
program, or it may treat the following part of the program as a
string until it comes to the next string. In the second case, it
might not produce an error message at all!
6. An unclosed bracket — (, {, or [ — makes Python continue with
the next line as part of the current statement. Generally, an error
occurs almost immediately in the next line.
7. Check for the classic = instead of == inside a conditional.
If nothing works, move on to the next section…
Now when you run the program, you will see three lines of output for each time through the loop.
The last time through the loop, the condition should be False. If the loop keeps going, you will be
able to see the values of x and y, and you might figure out why they are not being updated correctly.
In a development environment like PyScripter, one can also set a breakpoint at the start of the loop,
and single-step through the loop. While you do this, inspect the values of x and y by hovering your
cursor over them.
Of course, all programming and debugging require that you have a good mental model of what the
algorithm ought to be doing: if you don’t understand what ought to happen to x and y, printing
or inspecting its value is of little use. Probably the best place to debug the code is away from your
computer, working on your understanding of what should be happening.
of the function.
Now when you run the program, it will print a trace of each function as it is invoked.
If you’re not sure, step through the program with your debugger.
KeyError
You are trying to access an element of a dictionary using a key value
that the dictionary does not contain.
AttributeError
You are trying to access an attribute or method that does not exist.
Appendix A: Debugging 420
IndexError
The index you are using to access a list, string, or tuple is greater
than its length minus one. Immediately before the site of the error, add
a print statement to display the value of the index and the length of
the sequence. Is the sequence the right size? Is the index the right
value?
The first step is to make a connection between the program text and the behavior you are seeing.
You need a hypothesis about what the program is actually doing. One of the things that makes that
hard is that computers run so fast.
You will often wish that you could slow the program down to human speed, and with some
debuggers you can. But the time it takes to insert a few well-placed print statements is often short
compared to setting up the debugger, inserting and removing breakpoints, and walking the program
to where the error is occurring.
In order to program, you need to have a mental model of how programs work. If you write a program
that doesn’t do what you expect, very often the problem is not in the program; it’s in your mental
model.
The best way to correct your mental model is to break the program into its components (usually
the functions and methods) and test each component independently. Once you find the discrepancy
between your model and reality, you can solve the problem.
Of course, you should be building and testing components as you develop the program. If you
encounter a problem, there should be only a small amount of new code that is not known to be
correct.
Appendix A: Debugging 422
1 self.hands[i].add_card(self.hands[self.find_neighbor(i)].pop_card())
The explicit version is easier to read because the variable names provide additional documentation,
and it is easier to debug because you can check the types of the intermediate variables and display
or inspect their values.
Another problem that can occur with big expressions is that the order of evaluation may not be what
you expect. For example, if you are translating the expression x/2pi into Python, you might write:
1 y = x / 2 * math.pi
That is not correct because multiplication and division have the same precedence and are evaluated
from left to right. So this expression computes (x/2)pi.
A good way to debug expressions is to add parentheses to make the order of evaluation explicit:
1 y = x / (2 * math.pi)
Whenever you are not sure of the order of evaluation, use parentheses. Not only will the program
be correct (in the sense of doing what you intended), it will also be more readable for other people
who haven’t memorized the rules of precedence.
1 return self.hands[i].remove_matches()
1 count = self.hands[i].remove_matches()
2 return count
Now you have the opportunity to display or inspect the value of count
before returning.
If you find yourself suffering from any of these symptoms, get up and go for a walk. When you are
calm, think about the program. What is it doing? What are some possible causes of that behavior?
When was the last time you had a working program, and what did you do next?
Sometimes it just takes time to find a bug. We often find bugs when we are away from the computer
and let our minds wander. Some of the best places to find bugs are trains, showers, and in bed, just
before you fall asleep.
13
14 Joe""" )
15
16 msg["From"] = me # Add headers to the message object
17 msg["To"] = fred
18 msg["Subject"] = "Party on Saturday 23rd"
19
20 # Create a connection to your mail server
21 svr = smtplib.SMTP(your_mail_server)
22 response = svr.sendmail(me, fred, msg.as_string()) # Send message
23 if response != {}:
24 print("Sending failed for ", response)
25 else:
26 print("Message sent.")
27
28 svr.quit() # Close the connection
In the context of the course, notice how we use the two objects in this program: we create a message
object on line 9, and set some attributes at lines 16-18. We then create a connection object at line 21,
and ask it to send our message.
10 ("Content-Length", str(len(response_body)))]
11 start_response("200 OK", response_headers)
12 response = latin_1_encode(response_body)[0]
13 return [response]
14
15 httpd = make_server("127.0.0.1", 8000, my_handler)
16 httpd.serve_forever() # Start the server listening for requests
When you run this, your machine will listen on port 8000 for requests. (You may have to tell your
firewall software to be kind to your new application!)
In a web browser, navigate to http://127.0.0.1:8000/catalogue?category=guitars. Your browser should
get the response
Your web server will keep running until you interrupt it (Ctrl+F2 if you are using PyScripter).
The important lines 15 and 16 create a web server on the local machine, listening at port 8000. Each
incoming html request causes the server to call my_handler which processes the request and returns
the appropriate response.
We modify the above example below: my_handler now interrogates the path_info, and calls
specialist functions to deal with each different kind of incoming request. (We say that my_handler
dispatches the request to the appropriate function.) We can easily add other more request cases:
1 import time
2
3 def my_handler(environ, start_response):
4 path_info = environ.get("PATH_INFO", None)
5 if path_info == "/gettime":
6 response_body = gettime(environ, start_response)
7 elif path_info == "/classlist":
8 response_body = classlist(environ, start_response)
9 else:
10 response_body = ""
11 start_response("404 Not Found", [("Content-Type", "text/plain")])
12
13 response = latin_1_encode(response_body)[0]
14 return [response]
15
16 def gettime(env, resp):
17 html_template = """<html>
18 <body bgcolor='lightblue'>
Appendix B: An odds-and-ends Workbook 429
Notice how gettime returns an (admittedly simple) html document which is built on the fly by using
format to substitute content into a predefined template.
Our next recipe adds to our web browser from the previous section. We’ll allow a query like
classlist?subject=CompSci&year=2012 and show how our server can extract the arguments from
the query string, query the database, and send the rows back to the browser as a formatted table
within an html page. We’ll start with two new imports to get access to sqlite3 and cgi, a library
which helps us parse forms and query strings that are sent to the server:
1 import sqlite3
2 import cgi
Now we replace the stub function classlist with a handler that can do what we need:
Appendix B: An odds-and-ends Workbook 430
1 classlistTemplate = """<html>
2 <body bgcolor='lightgreen'>
3 <h2>Students taking {0} during {1}:</h2>
4 <table border=3 cellspacing=2 cellpadding=2>
5 {2}
6 </table>
7 <body>
8 </html>
9 """
10
11 def classlist(env, resp):
12
13 # Parse the field value from the query string (or from a submitted form)
14 # In a real server you'd want to check thay they were present!
15 the_fields = cgi.FieldStorage(environ = env)
16 subj = the_fields["subject"].value
17 year = the_fields["year"].value
18
19 # Attach to the database, build a query, fetch the rows.
20 connection = sqlite3.connect("c:\studentRecords.db")
21 cursor = connection.cursor()
22 cursor.execute("SELECT * FROM StudentSubjects WHERE subject=? AND year=?",
23 (subj, year))
24 result = cursor.fetchall()
25 # Build the html rows for the table
26 table_rows = ""
27 for (sn, yr, subj) in result:
28 table_rows += " <tr><td>{0}<td>{1}<td>{2}\n". format(sn, yr, subj)
29
30 # Now plug the headings and data into the template, and complete the response
31 response_body = classlistTemplate.format(subj, year, table_rows)
32 response_headers = [("Content-Type", "text/html"),
33 ("Content-Length", str(len(response_body)))]
34 resp("200 OK", response_headers)
35 return response_body
It is unlikely that we would write our own web server from scratch. But the beauty of this approach
is that it creates a great test environment for working with server-side applications that use the wsgi
protocols. Once our code is ready, we can deploy it behind a web server like Apache which can
interact with our handlers using wsgi.
Appendix C: Configuring Ubuntu for
Python Development
Note: the following instructions assume that you are connected to the Internet and that you have
both the main and universe package repositories enabled. All unix shell commands are assumed
to be running from your home directory ($HOME). Finally, any command that begins with sudo
assumes that you have administrative rights on your machine. If you do not — please ask your
system administrator about installing the software you need.
What follows are instructions for setting up an Ubuntu 9.10 (Karmic) home environment for use
with this book. I use Ubuntu GNU/Linux for both development and testing of the book, so it is the
only system about which I can personally answer setup and configuration questions.
In the spirit of software freedom and open collaboration, please contact me if you would like to
maintain a similar appendix for your own favorite system. I’d be more than happy to link to it or
put it on the Open Book Project site, provided you agree to answer user feedback concerning it.
Thanks!
Jeffrey Elkner²⁴
Governor’s Career and Technical Academy in Arlington
Arlington, Virginia
C.1. Vim
Vim²⁵ can be used very effectively for Python development, but Ubuntu only comes with the vim-
tiny package installed by default, so it doesn’t support color syntax highlighting or auto-indenting.
To use Vim, do the following:
1. From the unix command prompt, run:
$ sudo apt-get install vim-gnome
2. Create a file in your home directory named .vimrc that contains the following:
syntax enable
filetype indent on
set et
²⁴mailto:jeff@elkner.net
²⁵http://www.vim.org
Appendix C: Configuring Ubuntu for Python Development 433
set sw=4
set smarttab
map <f2> :w|!python %
When you edit a file with a .py extension, you should now have color syntax highlighting and auto
indenting. Pressing the key should run your program, and bring you back to the editor when the
program completes.
To learn to use vim, run the following command at a unix command prompt:
$ vimtutor
2. Add the following lines to the bottom of your .bashrc in your home directory:
PYTHONPATH=$HOME/lib/python
EDITOR=vim
This will set your prefered editor to Vim, add your own lib/python subdirectory for your Python
libraries to your Python path, and add your own bin directory as a place to put executable
scripts. You need to logout and log back in before your local bin directory will be in your search
path²⁶.
²⁶http://en.wikipedia.org/wiki/Path_(variable)
Appendix C: Configuring Ubuntu for Python Development 434
1 #!/usr/bin/env python3
2. At the unix command prompt, type the following to make myscript.py executable:
$ chmod +x myscript.py
3. Move myscript.py into your bin directory, and it will be runnable from anywhere.
Appendix D: Customizing and
Contributing to the Book
Note: the following instructions assume that you are connected to the Internet and that you have
both the main and universe package repositories enabled. All unix shell commands are assumed
to be running from your home directory ($HOME). Finally, any command that begins with sudo
assumes that you have administrative rights on your machine. If you do not — please ask your
system administrator about installing the software you need.
This book is free as in freedom, which means you have the right to modify it to suite your needs,
and to redistribute your modifications so that our whole community can benefit.
That freedom lacks meaning, however, if you the tools needed to make a custom version or to
contribute corrections and additions are not within your reach. This appendix attempts to put those
tools in your hands.
Thanks!
Jeffrey Elkner²⁷
Governor’s Career and Technical Academy in Arlington
Arlington, Virginia
E.1. Functions
Functions help us with our mental chunking: they allow us to group together statements for a high-
level purpose, e.g. a function to sort a list of items, a function to make the turtle draw a spiral, or a
function to compute the mean and standard deviation of some measurements.
There are two kinds of functions: fruitful, or value-returning functions, which calculate and return
a value, and we use them because we’re primarily interested in the value they’ll return. Void (non-
fruitful) functions are used because they perform actions that we want done — e.g. make a turtle
draw a rectangle, or print the first thousand prime numbers. They always return None — a special
dummy value.
Tip: None is not a string
Values like None, True and False are not strings: they are special values in Python, and are in the list
of keywords we gave in chapter 2 (Variables, expressions, and statements). Keywords are special in
the language: they are part of the syntax. So we cannot create our own variable or function with a
name True — we’ll get a syntax error. (Built-in functions are not privileged like keywords: we can
define our own variable or function called len, but we’d be silly to do so!)
Along with the fruitful/void families of functions, there are two flavors of the return statement
in Python: one that returns a useful value, and the other that returns nothing, or None. And if we
get to the end of any function and we have not explicitly executed any return statement, Python
automatically returns the value None.
Tip: Understand what the function needs to return
Perhaps nothing — some functions exists purely to perform actions rather than to calculate and
return a result. But if the function should return a value, make sure all execution paths do return the
value.
To make functions more useful, they are given parameters. So a function to make a turtle draw a
square might have two parameters — one for the turtle that needs to do the drawing, and another
for the size of the square. See the first example in Chapter 4 (Functions) — that function can be used
Appendix E: Some Tips, Tricks, and Common Errors 438
with any turtle, and for any size square. So it is much more general than a function that always uses
a specific turtle, say tess to draw a square of a specific size, say 30.
Tip: Use parameters to generalize functions
Understand which parts of the function will be hard-coded and unchangeable, and which parts
should become parameters so that they can be customized by the caller of the function.
Tip: Try to relate Python functions to ideas we already know
In math, we’re familiar with functions like f(x) = 3x + 5. We already understand that when we
call the function f(3) we make some association between the parameter x and the argument 3. Try
to draw parallels to argument passing in Python.
Quiz: Is the function f(z) = 3z + 5 the same as function f above?
Can we spot two problems here? As soon as we execute a return, we’ll leave the function. So the
logic of saying “If I find an odd number I can return True” is fine. However, we cannot return False
after only looking at one item — we can only return False if we’ve been through all the items, and
none of them are odd. So line 6 should not be there, and line 7 has to be outside the loop. To find the
second problem above, consider what happens if you call this function with an argument that is an
empty list. Here is a corrected version:
1 def any_odd(xs):
2 """ Return True if there is an odd number in xs, a list of integers. """
3 for v in xs:
4 if v % 2 == 1:
5 return True
6 return False
This “eureka”, or “short-circuit” style of returning from a function as soon as we are certain what
the outcome will be was first seen in Section 8.10, in the chapter on strings.
It is preferred over this one, which also works correctly:
Appendix E: Some Tips, Tricks, and Common Errors 439
1 def any_odd(xs):
2 """ Return True if there is an odd number in xs, a list of integers. """
3 count = 0
4 for v in xs:
5 if v % 2 == 1:
6 count += 1 # Count the odd numbers
7 if count > 0:
8 return True
9 else:
10 return False
The performance disadvantage of this one is that it traverses the whole list, even if it knows the
outcome very early on.
Tip: Think about the return conditions of the function
Do I need to look at all elements in all cases? Can I shortcut and take an early exit? Under what
conditions? When will I have to examine all the items in the list?
The code in lines 7-10 can also be tightened up. The expression count > 0 evaluates to a Boolean
value, either True or False. The value can be used directly in the return statement. So we could cut
out that code and simply have the following:
1 def any_odd(xs):
2 """ Return True if there is an odd number in xs, a list of integers. """
3 count = 0
4 for v in xs:
5 if v % 2 == 1:
6 count += 1 # Count the odd numbers
7 return count > 0 # Aha! a programmer who understands that Boolean
8 # expressions are not just used in if statements!
Although this code is tighter, it is not as nice as the one that did the short-circuit return as soon as
the first odd number was found.
Tip: Generalize your use of Booleans
Mature programmers won’t write if is_prime(n) == True: when they could say instead if
is_prime(n): Think more generally about Boolean values, not just in the context of if or while
statements. Like arithmetic expressions, they have their own set of operators (and, or, not) and values
(True, False) and can be assigned to variables, put into lists, etc. A good resource for improving
your use of Booleans is http://en.wikibooks.org/wiki/Non-Programmer%27s_Tutorial_for_Python_-
3/Boolean_Expressions
Exercise time:
- How would we adapt this to make another function which returns
Appendix E: Some Tips, Tricks, and Common Errors 440
True if all the numbers are odd? Can you still use a
short-circuit style?
- How would we adapt it to return True if at least three of the
numbers are odd? Short-circuit the traversal when the third odd
number is found — don’t traverse the whole list unless we have to.
1 sz = 2
2 def h2():
3 """ Draw the next step of a spiral on each call. """
4 global sz
5 tess.turn(42)
6 tess.forward(sz)
7 sz += 1
This fragment assumes our turtle is tess. Each time we call h2() it turns, draws, and increases the
global variable sz. Python always assumes that an assignment to a variable (as in line 7) means that
we want a new local variable, unless we’ve provided a global declaration (on line 4). So leaving out
the global declaration means this does not work.
Tip: Local variables do not survive when you exit the function
Use a Python visualizer like the one at http://pythontutor.com/ to build a strong understanding of
function calls, stack frames, local variables, and function returns.
Tip: Assignment in a function creates a local variable
Any assignment to a variable within a function means Python will make a local variable, unless we
override with global.
Appendix E: Some Tips, Tricks, and Common Errors 441
It would be wrong to split the string into words unless we were asked whether the word “snake”
occurred in the string.
Suppose we’re asked to read some lines of data and find function definitions, e.g.: def some_-
function_name(x, y):, and we are further asked to isolate and work with the name of the function.
(Let’s say, print it.)
As we’ve already mentioned, there are many more “sugar-coated” methods that let us work more
easily with strings. There is an rfind method, like find, that searches from the end of the string
backwards. It is useful if we want to find the last occurrence of something. The lower and upper
methods can do case conversion. And the split method is great for breaking a string into a list of
words, or into a list of lines. We’ve also made extensive use in this book of the format method. In
fact, if we want to practice reading the Python documentation and learning some new methods on
our own, the string methods are an excellent resource.
Exercises:
- Suppose any line of text can contain at most one url that starts
with “http://” and ends at the next space in the line. Write a
fragment of code to extract and print the full url if it is present.
Appendix E: Some Tips, Tricks, and Common Errors 443
1 import random
2 joe = random.Random()
3
4 def sum1():
5 """ Build a list of random numbers, then sum them """
6 xs = []
7 for i in range(10000000):
8 num = joe.randrange(1000) # Generate one random number
9 xs.append(num) # Save it in our list
10
11 tot = sum(xs)
12 return tot
13
14 def sum2():
15 """ Sum the random numbers as we generate them """
16 tot = 0
17 for i in range(10000000):
18 num = joe.randrange(1000)
19 tot += num
20 return tot
21
22 print(sum1())
23 print(sum2())
Appendix E: Some Tips, Tricks, and Common Errors 444
What reasons are there for preferring the second version here? (Hint: open a tool like the Performance
Monitor on your computer, and watch the memory usage. How big can you make the list before you
get a fatal memory error in sum1?)
In a similar way, when working with files, we often have an option to read the whole file contents
into a single string, or we can read one line at a time and process each line as we read it. Line-at-a-
time is the more traditional and perhaps safer way to do things — you’ll be able to work comfortably
no matter how large the file is. (And, of course, this mode of processing the files was essential in
the old days when computer memories were much smaller.) But you may find whole-file-at-once is
sometimes more convenient!