我写了一个调用函数的python脚本。该函数将 7 个列表作为函数内部的参数,如下所示:
def WorkDetails(link, AllcurrValFound_bse, AllyearlyHLFound_bse,
AlldaysHLFound_bse, AllvolumeFound_bse,
AllprevCloseFound_bse, AllchangePercentFound_bse,
AllmarketCapFound_bse):
除了link
列表之外的所有参数。但这使我的代码看起来很丑陋。我将这些列表传递给此函数,因为该函数在所有这些列表中附加了很少的值。对于其他用户,我怎样才能以更易读的方式做到这一点?