In PHP I can name my array indicies so that I may have something like:
$shows = Array(0 => Array('id' => 1, 'name' => 'Sesaeme Street'), 1 => Array('id' => 2, 'name' => 'Dora The Explorer'));
Is this possible in Python?
|
|
|||
|
|
|
This sounds like the PHP array using named indices is very similar to a python dict:
See http://docs.python.org/tutorial/datastructures.html#dictionaries for more on this. |
||
|
|
Yes,
|
||
|
|
|
|
PHP arrays are actually maps, which is equivalent to dicts in Python. Thus, this is the Python equivalent:
Sorting example:
BUT! With the example you provided, a simpler datastructure would be better:
|
|||
|
|
|
|
You should read the python tutorial and esp. the section about datastructures which also covers dictionaries. |
||
|
|
|
|
To assist future Googling, these are usually called associative arrays in PHP, and dictionaries in Python. |
||
|
|
|
|
Not exactly the same syntax, but there are a number of dictionary extensions out there which respect the order in which the key/value pairs have been added. E.g. seqdict. |
||
|
|
|
|
@Unkwntech, What you want is available in the just-released Python 2.6 in the form of named tuples. They allow you to do this:
|
||||
|
|
|
Python has lists and dicts as 2 separate data structures. PHP mixes both into one. You should use dicts in this case. |
||
|
|
|
|
I did it like this:
I did it also a bit more complicate with list instead of tuple, but I had override the setter as well as the getter. Anyways this allows:
|
||
|
|
