I have an OrderedDict whose values I would like to be functions, but have encountered unexpected behaviour. Initializing:
from collections import OrderedDict
options_dict=OrderedDict(["A",call_func_A(arg1,arg2)],
["B",call_func_B(arg1,arg3)],
["C",call_func_C(arg1,arg4)]
# Select options
options=["A","C"]
# Execute
result={}
for opt in options:
result[opt]=options_dict[opt]
# Return result (or whatever)
print result
Functions call_func_A, call_func_B and call_func_C turn out to be executed when options_dict is declared, rather than in the subsequent for loop over options.
I'd like the function calls to wait until the for loop.
What's going on?
First of all, you are declaring the OrderedDict incorrectly. The constructor expects a list of tuples. Instead, you are giving it multiple lists. Do it like so:
Second, when you declare
options_dict
, you don't pass the functions as the values of the dict, but rather their results:You are calling them by doing
call_func_A(arg1, arg2)
. One relatively simple way of avoiding that is by omitting the args:You can store the args in a second OrderedDict:
And then to call them: