What is a flexible, hybrid python collection object?

Posted by Naveen on Stack Overflow See other posts from Stack Overflow or by Naveen
Published on 2010-05-30T07:12:45Z Indexed on 2010/05/30 7:22 UTC
Read the original article Hit count: 262

As a way to get used to python, I am trying to translate some of my code to python from Autohotkey_L.
I am immediately running into tons of choices for collection objects.
Can you help me figure out a built in type or a 3rd party contributed type that has as much as possible, the functionality of the AutoHotkey_L object type and its methods.

AutoHotkey_L Objects have features of a python dict, list, and a class instance.

I understand that there are tradeoffs for space and speed, but I am just interested in functionality rather than optimization issues.

© Stack Overflow or respective owner

Related posts about python

Related posts about data-structures