Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
What would that mean? Can you provide some explanation of what you think that should do? – S.Lott Aug 1 '11 at 20:06

4 Answers

up vote 1 down vote accepted

Think map is also acceptable here:

p1, p2, p3 = map(lambda x: Point(), xrange(3))

But generator expression seems to be a bit faster:

p1, p2, p3 = (Point() for x in xrange(3))
share|improve this answer
That's a generator comprehension, not a list comprehension. – JAB Aug 1 '11 at 20:20
@JAB: that's generator expression, not generator comprehension – TokenMacGuy Aug 1 '11 at 20:43
@TokenMacGuy: Considering the syntax usage elsewhere in the document, "generator comprehension" can simply be taken to mean "comprehension wrapped as a generator" rather than "as a list" or "as a dict". After all, what most people refer to as "list comprehensions" are actually "(list )comprehensions contained within list displays", as shown in the link you provided. – JAB Aug 1 '11 at 20:51
Thank you guys - i have modified my post. – Artsiom Rudzenka Aug 2 '11 at 5:26

It may be slightly more efficient to use a generator comprehension rather than a list comprehension:

p1, p2, p3 = (Point() for _ in range(3)) # use xrange() in versions of Python where range() does not return an iterator for more efficiency

There's also the simple solution of

p1, p2, p3 = Point(), Point(), Point()

Which takes advantage of implicit tuple packing and unpacking.

share|improve this answer
ya this was exactly what I wanted..thnx – Rushil Aug 3 '11 at 12:41

Not really.

p1, p2, p3 = [Point() for x in range(3)]
share|improve this answer

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:

p1, p2, p3 = [Point() for _ in range(3)]
share|improve this answer
Ya that did it :-) – Rushil Aug 3 '11 at 12:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.