I am learning to use positional arguments in python and also trying to see how they work when mixed up with default arguments:-
def withPositionalArgs(ae=9,*args
Python3 has relaxed ordering.
Now you can do something like:
def withPositionalArgs(*args, ae=9): print('ae=', ae) print('args =', args) a=1 b=2 c=[10, 20] withPositionalArgs(a, b, c, ae=7)