In the following code, how do I pass the dictionary to func2. How should func2 be called?
def func2(a,**c):
if len(c) > 0:
print len(c)
print c
u={'a':1,'b':2}
func2(1,u)
|
In the following code, how do I pass the dictionary to
|
||||
|
This won't run, because there are multiple parameters for the name a. But if you change it to:
Then you call it as:
or
|
|||
|
|
Just as it accepts them:
|
|||||||||
|
|
This might help you:
|
|||
|
|
forloop still won't work. Get rid of theand 'a' in cand it would, not sure what that clause is trying to do? – agf Sep 27 '11 at 6:14