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, AllcurrValFound_bse, AllyearlyHLFound_bse,
AlldaysHLFound_bse, AllvolumeFound_bse,
AllprevCloseFound_bse, AllchangePercentFound_bse,
AllmarketCapFound_bse):
where all the arguments except link are lists . But this makes my code looks pretty ugly . I pass these lists to this function because the function appends few values in all of these lists. How can I do it in more readable way for other users.