is there any shorthand method of defining multiple objects of the same class in one line. (I'm not talking about lists or array of objects)..
i mean something like
p1,p2,p3 = Point()
any suggestions?
|
|
Think map is also acceptable here:
But generator expression seems to be a bit faster:
|
|||||||||
|
|
It may be slightly more efficient to use a generator comprehension rather than a list comprehension:
There's also the simple solution of
Which takes advantage of implicit tuple packing and unpacking. |
||||
|
|
|
What exactly are you trying to achieve? This code does what you're asking, but I don't know if this is your final goal:
|
|||
|
|