list vs. dict
Jeff Shannon
jeff at ccvcorp.com
Thu Feb 28 15:04:24 EST 2002
More information about the Python-list mailing list
Thu Feb 28 15:04:24 EST 2002
- Previous message (by thread): list vs. dict
- Next message (by thread): list vs. dict
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
dsavitsk wrote: > "Max M" <maxm at mxm.dk> wrote in message news:3C7CFAF8.1080108 at mxm.dk... > > > btw: if you really want to store it in a list you can get dict-like > > behaviour with list speed like this: > > is this a python idiom that people often use? cause i've not seen it before, > but it is really clever. No, it's not something that people often use. Generally, if you want dict-like behavior, you just use a dict. The times that it's worth the effort to fake the behavior with something else, are pretty unusual. The speed difference between lists and dicts isn't all that significant, anyhow, and which one has the advantage depends on how you're using it. Python dicts are pretty amazingly nifty, really; there's no reason to be shy about using them. Jeff Shannon Technician/Programmer Credit International
- Previous message (by thread): list vs. dict
- Next message (by thread): list vs. dict
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list