i have large list of values:
[23.22, 50.44 .... 32.53]
after i should get next value:
reduce(operator.mul, [Decimal(i) for i in list])
print value - 4.248649022193430909459625077E+583
this value is too large
but i have next action:
value**1/len(list)
I can not get the value if the list is very large - Is it possible to get the geometric mean in that case?