Hi all,
My first try on using RST to write an email. so I can (will) make
mistakes :-)
I am experiencing the problem shown in this thread_ of the
`python-mode`_ discussion list hosted at SourceForge.
.. _thread:
https://sourceforge.net/tracker/?func=detail&atid=581349&aid=1215039&group_id=869
Thanks for the help!
Marcio
--
http://mail.python.org/mailman/listinfo/python-list
Hi!
In dictionaries, unlinke lists, it doesn't matter the order one inserts
the contents, elements are stored using its own rules.
Ex:
>>> d = {3: 4, 1: 2}
>>> d
{1: 2, 3: 4}
So, my question is: if I use keys() and values() it will give me the
keys and values in the same order?
In other words,