mirror of
https://github.com/aykhans/AzSuicideDataVisualization.git
synced 2025-04-21 10:15:45 +00:00
18 lines
264 B
Python
18 lines
264 B
Python
# Copyright (c) 2010-2022 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
|