reduce python list of objects to dict object.id -> object

In Python 3.x:

In both Python 3.x and Python 2.4+:

(x.id, x) for x in object_list is a generator comprehension (and, nicely, does not need to be wrapped in parentheses like a list comprehension needs to be wrapped in brackets if it’s being used as a single argument for a call; of course, this means that in other circumstances the expression I used would have to be ((x.id, x) for x in object_list)). Unlike a list comprehension, it will not generate an actual list of all the items, and is thus more efficient in situations such as this.

As a side note, Python has a built-in method id():

Return the “identity” of an object. This is an integer which is guaranteed to be unique and constant for this object during its lifetime. Two objects with non-overlapping lifetimes may have the same id() value. (Implementation note: this is the address of the object.)

So if you wanted to let Python handle the ids on its own, you could do it as:

or

from: http://stackoverflow.com/questions/3070242/reduce-python-list-of-objects-to-dict-object-id-object

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注