Calling functions with dynamic arguments

SeanDavis12 seandavi at gmail.com
Wed Nov 29 10:09:45 EST 2006


I have a dictionary like:

{"a":1, "b":2}

and I want to call a function:

def func1(a=3,b=4):
    print a,b

so that I get a=1,b=2, how can I go about that?  

Thanks,
Sean




More information about the Python-list mailing list