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

I have code that looks something like this:

self.ui.foo.setEnabled(False)
self.ui.bar.setEnabled(False)
self.ui.item.setEnabled(False)
self.ui.item2.setEnabled(False)
self.ui.item3.setEnabled(False)

And I would like to turn it into something like this:

items = [foo,bar,item,item2,item3]
for elm in items:
    self.ui.elm.setEnabled(False)

But obviously just having the variables in the list with out the 'self.ui' part is invalid, and I would rather not type out 'self.ui' for every element in the list, because that really isn't to much better. How could I rewrite my first code to make it something like what I'm talking about?

share|improve this question

2 Answers

up vote 4 down vote accepted

Grab the object to have the function called on it by its attribute name using the built-in getattr function:

items = ['foo', 'bar', 'item', 'item2', 'item3']
for elm in items:
    getattr(self.ui, elm).setEnabled(False)
share|improve this answer

You could try something like:

items = [foo,bar,item,item2,item3]
ui = self.ui
for elm in items:
    ui.elm.setEnabled(False)
share|improve this answer
Okay, for my own learning, what's wrong with doing this? – kafuchau Jun 30 '10 at 15:44
1  
When adding just the items foo,bar to the list items, you are referencing variables that do not exist. self.ui.foo != foo – Backus Jun 30 '10 at 15:47
Oh, okay. Duh... I see that now. Thanks! – kafuchau Jun 30 '10 at 19:18

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.