Wednesday, July 3, 2024
HomeLanguagesPythonPython | sympy.prod() method

Python | sympy.prod() method

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

Nango Kalahttps://www.kala.co.za
Experienced Support Engineer with a demonstrated history of working in the information technology and services industry. Skilled in Microsoft Excel, Customer Service, Microsoft Word, Technical Support, and Microsoft Office. Strong information technology professional with a Microsoft Certificate Solutions Expert (Privet Cloud) focused in Information Technology from Broadband Collage Of Technology.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments