A collection of notes to go over in class, to keep things organized.
We got the results of the feedback survey last week.
We really do read the comments and try to improve the class as we go.
So Thanks!
And you’ll get another chance at the end of class, which we also appreciate.
See arbitrary_key.py in solutions/session04
Let’s look at Eowyn’s solution…
a number of you have been putting code in the global (module) namespace:
the_dict = {}
def fun():
...
the_dict = something()
What’s wrong with this?