Open In App

Python | sympy.prod() method

Last Updated : 02 Aug, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

With the help of sympy.prod() method, we can find the product of two integers or we can multiply the list with integers and it will return the sum of products in a list by using sympy.prod() method.

Syntax : sympy.prod(val1, val2)
Return : Return the product of numbers.

Example #1 :
In this example we can see that by using sympy.prod() method, we are able to find the product of two integers and we can find the product of list and integers and then it will return a sum of product.




# import sympy
from sympy import *
  
# Using sympy.prod() method
gfg = prod([1, 2, 3], 5)
  
print(gfg)


Output :

30

Example #2 :




# import sympy
from sympy import *
  
# Using sympy.prod() method
gfg = prod(range(1, 5))
  
print(gfg)


Output :

24


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads