codecamp

Python3 math.pow() 方法 - 求幂

Python math 模块  math 模块


描述

math.pow(x, y) 方法返回返回 x 的 y 次幂( 次方 )。

如果 x 为负且 y 不是整数,则返回 ValueError。 该方法会将两个参数转换为浮点数。 math.pow(1.0,x) 或 math.pow(x,0.0),始终返回 1.0。

 python中内置了两种求幂的方法,分别是​**​和内置函数​pow()​。

  1. ​​**​​运算符可以用来计算幂次方,但只能计算整数次幂,如果需要计算浮点数次幂,请使用内置函数​​pow()​​或者​​math.pow()​
  2. 内置函数​​pow()​​和math模块的​​math.pow()​​功能是一样的,但在返回值上,​​math.pow()​​总是返回浮点型

语法

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

math.pow(x, y)

参数说明:

  • x -- 必需,一个代表基数的数字。
  • y -- 必需,一个代表指数的数字。

返回值

返回一个浮点数,表示 x 的 y 次幂。


实例

以下实例返回 9 的 3 次方:

# 导入 math 包
import math

# 输出 9 的 3 次方
print(math.pow(9, 3))

输出结果:

729.0

Python math 模块  math 模块


Python3 math.perm() 方法 -计算排列数
Python3 math.prod() 方法 - 求积
温馨提示
下载编程狮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; }