在Python中如何將清單中所有數字相乘,然後傳回乘積值。以下這篇文章就來為大家介紹三種將清單中的所有數字相乘、計算乘積值的方法,希望對大家有所幫助。
方法一:使用遍歷
將變數product的值初始化為1(不為0為0乘以任何值返回零)。遍歷到列表末尾,將每個數字乘以變數product。最後儲存在變數product中的值就是列表中的所有數字的乘積。
程式碼範例:
def multiplyList(myList) : # 将列表元素一 一相乘 product = 1 for x in myList: product = product * x return product list1 = [1, 2, 3] list2 = [3, 2, 4] print(multiplyList(list1)) print(multiplyList(list2))
輸出:
6 24
方法二:使用numpy.prod()
我們可以使用numpy模組的numpy.prod()方法來計算列表中所有數字的乘積;它會根據乘法結果傳回整數或浮點值。
程式碼範例:
import numpy list1 = [2, 3, 4] list2 = [4, 6, 4] # 使用numpy.prod() result1 = numpy.prod(list1) result2 = numpy.prod(list2) print(result1) print(result2)
輸出:
24 96
方法三:使用lambda reduce()函數
#程式碼範例:
from functools import reduce list1 = [1, 2, 3] list2 = [3, 2, 4] result1 = reduce((lambda x, y: x * y), list1) result2 = reduce((lambda x, y: x * y), list2) print(result1) print(result2)
輸出:
6 24
相關影片教學推薦:《Python教學》
以上就是本篇文章的全部內容,希望能對大家的學習有所幫助。更多精彩內容大家可以追蹤php中文網相關教學欄位! ! !
以上是Python如何計算列表中所有數字的乘積? (程式碼範例)的詳細內容。更多資訊請關注PHP中文網其他相關文章!