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