Re: question about dictionaries

2006-01-19 Thread Brett Hoerner
Chris wrote: > Is there a way to stop this behavior? I want to process this dictionary > in the order it's in, element by element. I'm running Python 2.3, if > that helps. As said previously, you either want a list (which are ordered), or an ordered-dictionary (not a Python native type, see http:/

Re: question about dictionaries

2006-01-19 Thread Paul Rubin
"Chris" <[EMAIL PROTECTED]> writes: > Is there a way to stop this behavior? I want to process this dictionary > in the order it's in, element by element. I'm running Python 2.3, if > that helps. You want a list not a dictionary. -- http://mail.python.org/mailman/listinfo/python-list