Advanced Python Arguments

#Keyword Arguments

def my_function(a, b, c):
#Do this with a
#Then do this with b
#Finally do this with c
my_function(c=3, a=1, b=2)

#Arguments with Default Values

def my_function(a=1, b=2, c=3):
#Do this with a
#Then do this with b
#Finally do this with c
my_function(b=5)