Searching and Sorting?

In class exercises
Change into your inclass/w08-search directory.
[~]$ cd
[~]$ cd cs21/inclass/w08-search
[w08-search]$ ls search.py goodwords.py [w08-search]$
Good Words
Open goodwords.py in vim. In a separate window, change to the w08-search directory so you can run the program using python goodwords.py. This should be somewhat familiar except for the if __name__ == "__main__": bit, so let's explain that
Search
Open search.py in vim.