本站改版新增arduino频道
计算列表元素之积
定义一个数字列表,并计算列表元素之积。 例如: 输入 : list1 = [1, 2, 3] 输出 : 6 计算:1 * 2 * 3 实例 1 def multiplyList(myList) : result = 1 for x in myList: result = result * x return result list1 = [1, 2, 3] list2 = [3, 2, 4] print(multiplyList(list1)) print(multiplyList(list2)) 以上实例输出结果为: 6 24
Copyright © 2014 ESP56.com All Rights Reserved
晋ICP备14006235号-22 晋公网安备14108102001165号
执行时间: 0.0095138549804688 seconds