ml_test / lycoris /utils /general.py
tonyshark's picture
Upload 132 files
cc69848 verified
raw
history blame contribute delete
97 Bytes
def product(xs: list[int | float]):
res = 1
for x in xs:
res *= x
return res