Reinhold Birkenfeld <[EMAIL PROTECTED]> writes: > Don't forget > > for line in f: > for c in line: > # do stuff
As mentioned before, that's careless programming, since it can read the whole file into memory if the file contains no newlines. -- http://mail.python.org/mailman/listinfo/python-list