Function Python

def f(**args): print args
print f()
print f(a=1, b=2)