Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to make a dictionary, and when you "look up" something in the dictionary, a function is called. Unfortunately, when I am declaring said dictionary, the functions are called during declaration. Is there a way such that my problem won't happen, or am I just going to have to have a bunch of if's and elif's?

share|improve this question
3  
Show your code. – Marcin Nov 1 '12 at 22:35

closed as not a real question by Marcin, Lev Levitsky, Dharmendra, Mehul, Pfitz Nov 2 '12 at 9:00

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

up vote 12 down vote accepted

Don't put parentheses after the function:

def bar():  return 1
mydct = {'foo': bar}

To call the function, put the parentheses after the dict lookup:

mydct['foo']()
share|improve this answer
4  
+1 for being psychic :-) – Zero Piraeus Nov 1 '12 at 22:37
Ah, thank you. Worked perfectly... And now I feel stupid for not realizing this... :D – SuperCheezGi Nov 1 '12 at 22:37
No biggie; coming from Perl, I still remember being surprised by the importance that parens play in Python. :) – unutbu Nov 1 '12 at 22:40
def foo(x):
    return 2*x

fakeobject = {'foo': foo}

fakeobject['foo'](3)

The above shows you how. However, you're basically rolling your own object system, so this is likely a design error.

share|improve this answer
6  
Not sure about it being a design error - dictionary based dispatch is a common idiom – Jon Clements Nov 1 '12 at 22:39
1  
@JonClements Appropriate uses are pretty rare. Inappropriate uses are tempting. – Marcin Nov 1 '12 at 23:22

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