In PHP I can name my array indices so that I may have something like:
$shows = Array(0 => Array(\'id\' => 1, \'name\' => \'Sesame Street\'),
I think what you are asking is about python dictionaries.There you can named your indices as you wish . For ex:
dictionary = {"name": "python", "age": 12}