Python/ref math pow

来自菜鸟教程
跳转至:导航、​搜索

<languages />

Python math.pow()方法

Methods数学方法

找到提高到3的幂的9的值:

    # Import math Library
import math 

#Return the value of 9 raised 
    to the power of 3
print(math.pow(9, 3))

定义和用法

The math.pow() 方法返回x的乘幂y的值。

如果x为负且y不是整数,则返回ValueError。

此方法将两个参数都转换为浮点数。

Tip: 如果我们使用 math.pow(1.0,x) or math.pow(x,0.0) ,它将始终返回1.0。

句法

math.pow(x, y)

参数值

参数 描述
x 需要。代表基数的数字
y 需要。代表指数的数字

技术细节

返回值: A

float 值,表示x的值乘以y的幂(x y )

Methods数学方法