Run update21 to download week07 files
$ cd $ update21 $ cd cs21/class/week07/ $ ls
On the class schedule for week6 is a link to information about using strings and lists as objects, and about using the random library.
We have talked about lists and strings as being objects and how to see a listing of the methods each provide. In the python interpreter, you can get information about list and str class method functions by calling help(class_name):
$ python >>> help(str) >>> help(list)
The files listOps.py and stringOps.py from week06 show some examples of using list and string method functions.