vote up 3 vote down star

When defining class attributes through "calculated" names, as in:

class C(object):
    for name in (....):
        exec("%s = ..." % (name,...))

is there a different way of handling the numerous attribute definitions than by using an exec? getattr(C, name) does not work because C is not defined, during class construction...

flag

1  
BTW: your tag of "compile-time" is jarring on a Python question. Compilation isn't really an important consideration here. This is about defining a class, not code compilation, which is an orthogonal issue. – Ned Batchelder May 26 at 20:08
@Ned: You're right. I used the tag "compile-time" because the code in the example is only executed at compile time. Technically, it could be executed lazily, and the need for defining the class would still remain. – EOL May 27 at 14:59

4 Answers

vote up 11 vote down check

How about:

class C(object):
    blah blah

for name in (...):
    setattr(C, name, "....")

That is, do the attribute setting after the definition.

link|flag
vote up 2 vote down

If your entire class is "calculated", then may I suggest the type callable. This is especially useful if your original container was a dict:

d = dict(('member-%d' % k, k*100) for k in range(10))
C = type('C', (), d)

This would give you the same results as

class C(object):
    member-0 = 0
    member-1 = 100
    ...

If your needs are really complex, consider metaclasses. (In fact, type is a metaclass =)

link|flag
vote up 2 vote down
class C (object):
    pass

c = C()
c.__dict__['foo'] = 42
c.foo # returns 42
link|flag
Ned's answer is better :) – Dan May 26 at 21:41
+1 for your fair play, Dan. :) – EOL May 28 at 14:34
vote up 0 vote down

What about using metaclasses for this purpose?

Check out Question 100003 : What is a metaclass in Python?.

link|flag

Your Answer

Get an OpenID
or

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