SZanlongo
7/21/2016 - 8:08 PM

Python kwargs

Python kwargs

def f(**kwargs):
    foo = kwargs.pop('foo')
    bar = kwargs.pop('bar')
    #...etc...