소프트웨어에 대한 모든 것

파이썬 math.prod 본문

카테고리 없음

파이썬 math.prod

앤테바 2021. 11. 6. 23:02
반응형

 

주어진 iterable에 대해서 모든 elements에 대해서 곱셈을 계산해서 반환한다.

 

import math

arr = [1, 2, 3, 4, 5]

# arr의 모든 elements에 대해서 곱셈 연산
product = math.prod(arr)

# Output is 120
print(product)

 

참고:

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

반응형
Comments