Py4Inf 09 Dictionaries
Py4Inf 09 Dictionaries
Chapter 9
• A collection is nice because we can put more than one value in them
and carry them all around in one convenient package.
$ python
Python 2.5.2 (r252:60911, Feb 22 2008, 07:57:53)
[GCC 4.0.1 (Apple Computer, Inc. build 5363)] on darwin
>>> x = 2
>>> x = 4
>>> print x
4
A Story of Two Collections..
• List
• Dictionary
perfume
money
candy
http://en.wikipedia.org/wiki/Associative_array
Dictionaries
• Dictionaries are Python’s most powerful data collection
counts = dict()
names = ['csev', 'cwen', 'csev', 'zqian', 'cwen']
for name in names :
if name in counts:
counts[name] = counts[name] + 1
else :
counts[name] = 1 {'csev': 2, 'zqian': 1, 'cwen': 2}
print counts
The get method for dictionary
if name in counts:
• This pattern of checking to print counts[name]
see if a key is already in a else :
dictionary and assuming a print 'Not found'
default value if the key is not
there is so common, that
there is a method called get()
that does this for us print counts.get(name, 'Not found')
counts = dict()
names = ['csev', 'cwen', 'csev', 'zqian', 'cwen']
for name in names :
counts[name] = counts.get(name, 0) + 1
print counts
Default
{'csev': 2, 'zqian': 1, 'cwen': 2}
Writing programs (or programming) is a very creative and rewarding activity. You can
write programs for many reasons ranging from making your living to solving a difficult
data analysis problem to having fun to helping someone else solve a problem. This
book assumes that everyone needs to know how to program and that once you know
how to program, you will figure out what you want to do with your newfound skills.
We are surrounded in our daily lives with computers ranging from laptops to cell
phones. We can think of these computers as our ``personal assistants'' who can take
care of many things on our behalf. The hardware in our current-day computers is
essentially built to continuously ask us the question, ``What would you like me to do
next?''.
Our computers are fast and have vasts amounts of memory and could be very helpful
to us if we only knew the language to speak to explain to the computer what we
would like it to ``do next''. If we knew this language we could tell the computer to do
tasks on our behalf that were reptitive. Interestingly, the kinds of things computers can
do best are often the kinds of things that we humans find boring and mind-numbing.
the clown ran after the car and the car ran into the tent and the
tent fell down on the clown and the car
Counting Pattern
counts = dict()
print 'Enter a line of text:' The general pattern to count the
line = raw_input('') words in a line of text is to split
the line into words, then loop
words = line.split() thrugh the words and use a
print 'Words:', words dictionary to track the count of
each word independently.
print 'Counting...'
for word in words:
counts[word] = counts.get(word,0) + 1
bigcount = None
bigword = None python words.py
for word,count in counts.items(): Enter file: clown.txt
if bigcount is None or count > bigcount: the 7
bigword = word
bigcount = count