Math module in Python contains a number of mathematical operations, which can be performed with ease using the module.
math.prod() method in Python is used to calculate the product of all the elements present in the given
iterable. Most of the built-in containers in Python like list, tuple are iterables. The iterable must contain numeric value else non-numeric types may be rejected.
This method is new in Python version 3.8.
Syntax: math.prod(iterable, *, start = 1)
Parameters:
iterable: an iterable containing numeric values
start: an integer representing the start value. start is a named (keyword-only) parameter and its default value is 1.
Returns: the calculated product of all elements present in the given iterable.
Code #1: Use of
math.prod() method
Code #2: if start parameter is explicitly specified
Code #3: When the given iterable is empty