Chapter 9: Dictionaries Flashcards
difference between dictionary and list
dictionary is more general - maps between a set of indicies (keys) and a set of values
key
set of indicies that maps to a value
association of a key and a value…
called a key-value pair, or an item
turn eng2ger (english to german dictionary) into a dictionary
eng2ger=dict()
braket type of dictionary
{ } - curly brackets.
create item mapping key ‘one’ to value ‘eins’
eng2ger[‘one’]=’eins’
print(eng2ger)
{‘one’: ‘eins’}
add more
eng2ger[‘x’]=’y’, will just add new ones
creating dict with multiple items at start
eng2ger={‘three’: ‘drei’, ‘four’: ‘vier’} - output can be used to create new one
show value of a key
print(eng2ger[‘one’]) returns eins
find number of items
len(eng2ger), returns no. of items
‘in’ operator can be used to tell us if a…
key is in the dictionary, but not a value. eg
‘one’ in eng2ger #returns True, but ‘eins’ returns False
to see if a value is in dictionary…
use the ‘values’ method to return a list, then use the ‘in’ operator. x=list(eng2ger.values())
‘eins’ in x #returns true
what does c mean, as in “for c in str
character
dictionary to tally characters in a string, ie give frequency of each
word='brontosaurus' d=dict() for c in word: if c not in d: < d[c]=1 < else: < d[c]=d[c]+1 <
print(d)
‘get’ dictionary method
print(dic.get(‘key’, ‘value’))
prints the value of the key if key is present, otherwise prints the other value put in brackets
use ‘get’ to make character tally more concise
word=’brontosaurus’
d=dict()
for c in word:
d[c]=d.get(c, 0)+1 <
print(d)
x+=1
-=…
*=…
/=…
equiv to x=x+1 etc
list all keys with values next to them
dic=…
for key in dic:
print(key, dic[key])
‘keys’ dictionary method
makes a list of keys
lst=list(dic.keys()). can then be sorted, and looped through to report each key and its value
do the same, but sorted alphabetically (via list)
dic=... lst=list(dic.keys()) lst.sort() for key in lst: print(key, dic[key])
‘lower’ string method
make a line all lowercase
line=line.lower()
‘punctuation’ string method
identify puntuation in a str
str.punctuation
‘translate’ string method
not sure if important yet
delete punctuation on a line with ‘translate’ string method
line=line.translate(line.maketrans(‘’, ‘’, string.punctuation))
first 2 parameters empty. deletes all of 3rd parameter (all punctuation present if it exists).
swap keys with values in dictionary
d={value:key for key, value in d.items()}
copy dictionary. NB, multiple values can be the same, keys can’t. so when reversed this well mess things up.
dict2=dict1.copy()
long-winded way to avoid duplicate key problem above is in chap9ex3-4. May be able to avoid, as in chap9ex3-4_simpler
gives a way of identifying a value without knowing the key, and printing both