codecamp

Python3 math.prod() 方法 - 求积

Python math 模块 math 模块


描述

Python math.prod() 方法用于计算可迭代对象中所有元素的积。

该函数要求python的最低版本为Python3.8!


语法

math.prod() 方法语法如下:

math.prod(iterable, start)

参数说明:

  • iterable -- 必需,可迭代对象。
  • start -- 可选,指起始值。 默认值为 1。

返回值

一个浮点值或整数,可迭代元素的乘积,类型会根据元素判断,如果元素都是整数返回的是整数,如果元素有浮点数,返回的是浮点数。


实例

以下实例计算可迭代元素的乘积:

# 导入 math 包
import math

# 计算可迭代元素的乘积
sequence = (2, 2, 2)
print(math.prod(sequence))

输出结果:

8

Python math 模块 math 模块


Python3 math.pow() 方法 - 求幂
Python3 math.remainder() 方法 -求余数
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

相关教程

Python基础教程

python内置库

python3 math模块

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }