Python Dict for Arrays
Some more examples of Python dicts and array general use.
import pprint ### Example python dict as an associative multi array ### Example is using an unique key pp = pprint.PrettyPrinter(indent=2) table = {} table[1]={'LastName':'Sable','name':'Sam'} table[2]={'LastName':'Sable','name':'Samantha'} table[3]={'LastName':'Sable','name':'Stevie'} pp.pprint(table) print table[2] print table[3]['name']