File size: 97 Bytes
0bb1a82 | 1 2 3 4 5 6 | def product(xs: list[int | float]):
res = 1
for x in xs:
res *= x
return res
|
0bb1a82 | 1 2 3 4 5 6 | def product(xs: list[int | float]):
res = 1
for x in xs:
res *= x
return res
|