In message <[EMAIL PROTECTED]>, james_027 wrote: > is there any difference between .. > > for key in a_dict: > > from > > for key in a_dict.keys():
I'm assuming the former is equivalent to
for key in a_dict.iterkeys() :
--
http://mail.python.org/mailman/listinfo/python-list
