demo_ref_math_prod.py:
# Import math Library import math sequence = (2, 2, 2) #Return the product of the elements print(math.prod(sequence))
C:\Users\My Name>python demo_math_prod.py
8