VOOZH about

URL: https://www.geeksforgeeks.org/python/python-math-prod-method/

⇱ Python - math.prod() method - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Python - math.prod() method

Last Updated : 23 Jan, 2020
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
Output:
120
0.21
3628800
Code #2: if start parameter is explicitly specified
Output:
240
Code #3: When the given iterable is empty
Output:
1
5
Reference: Python math library
Comment