Ernesto:
>1.  How to search for the keywords "Name:", "Age:", etc. in the file...

You could use regular expression matching:
http://www.python.org/doc/lib/module-re.html

Or plain string searches:
http://www.python.org/dev/doc/devel/lib/string-methods.html

>2.  How to implement some organized "list of lists" for the data
>structure.

You could make it a list of bunches, for example:
http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/52308

Or a list of objects of your custom class.

-- 
René Pijlman
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to