I have written a python script which calls a function. This function takes 7 list as parameters inside the function, something like this:
def WorkDetails(link, A
I think that usage of **kwarg is better. Look this example:
def MyFunc(**kwargs): print kwargs MyFunc(par1=[1],par2=[2],par3=[1,2,3])