I have this function:
def fun(arg1=1,arg2=2,arg3=3,arg4=4)
Now if I want to call fun with arg1=8 then i will do this:
fun(8)
and if I want to call it with arg1=8 and arg2=9 then I think this will do(correct me if I am wrong):
fun(8,9)#LINE2
My question is how to call fun if I want to call it with fourth argument=10,without passing other argument values(let other argument to be default valued).