Let\'s say I have this :
def a(dict): locals().update(dict) print size def b(): size = 20 f(locals())
What do I have to do to acc
Is this helping you somehow?
def print_size(size=None): print(size) dict = {'size': 'XXL'} print_size(**dict)