
# Swap the order of arguments in a function.
# https://www.globalsino.com/ICs/page4853.html

def MyFunction_1(c1, c2, c3):
    print('The order of my original function is:', c1, c2, c3)

MyFunction_1(c1 = 'Yougui', c3 = 'Liao', c2 = 'GlobalSino')


def MyFunction_2(c1, c2, c3):
    print('The order of my original function is:', c1, c2, c3)

MyFunction_2('Yougui', 'Liao', 'GlobalSino')
