12 lines
132 B
Python
12 lines
132 B
Python
args = {
|
|
"foo" : 1,
|
|
"bar" : 2
|
|
}
|
|
|
|
def baz(a, b, buz = None, foo = None, bar = None):
|
|
print(foo, bar)
|
|
|
|
baz(0,0, **args)
|
|
|
|
|