Files

18 lines
264 B
Python
Raw Permalink Normal View History

2024-08-27 20:33:44 +02:00
# Copyright (c) 2010-2024 openpyxl
"""
math.prod equivalent for < Python 3.8
"""
import functools
import operator
def product(sequence):
return functools.reduce(operator.mul, sequence)
try:
from math import prod
except ImportError:
prod = product