Working with Files [June 5, 2011, 8:53 p.m.]
An important part of programming is knowing how to work directly with files. Lets review the following Pythonic tools for working with files:
- open()
- read()
- readlines()
- write()
- seek()
- close()
- the Pickle module
Learning Resources
- Chapter 7 (Slides, Printable Slides, Lecture Audio)
Python Docs