Scott wrote:
Thank you fine folks for getting back with your answers!So down the road I do dictname[line42].append("new stuff").
The keys are strings, so
dictname['line42'].append("new stuff")
or
for key in dictname.keys():
...
dictname[key]....
tjr
--
http://mail.python.org/mailman/listinfo/python-list
