You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
# Copyright (c) 2010-2021 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
|
|
|