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?
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.
|
|
|||||
|
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.
|
Don't put parentheses after the function:
To call the function, put the parentheses after the dict lookup:
|
|||||||||
|
The above shows you how. However, you're basically rolling your own object system, so this is likely a design error. |
|||||||||
|