2018年1月11日 星期四

Python: Compute the product of a list of integers

Python: Compute the product of a list of integers

Python Basic: Exercise-115 with Solution

Write a Python program to compute the product of a list of integers (without using for loop).
Sample Solution:-
from functools import reduce
nums = [10, 20, 30,]
nums_product = reduce( (lambda x, y: x * y), nums)
print("Product of the numbers : ",nums_product)

=========== RESTART: F:/Python_APSC/py-ex-basic-115.py ===========
Product of the numbers :  6000
>>> 
 reduce(lambda x,y: x+y, [47,11,42,13])
113
The following diagram shows the intermediate steps of the calculation: 
Veranschulichung von Reduce

沒有留言:

張貼留言

113 學年度第 1 學期 RFID應用課程 Arduino程式

113 學年度第 1 學期 RFID應用課程 Arduino程式 https://www.mediafire.com/file/zr0h0p3iosq12jw/MFRC522+(2).7z/file 內含修改過後的 MFRC522 程式庫 (原程式有錯誤) //定義MFRC522...