Python Best Practices Exemple

def make_complex(*args):
    x, y = args
    return dict(**locals())
Odd Orangutan