Contoh Praktik Python Terbaik

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