Python3解释器内置了很多函数,可以随时调用它们,pow就是其中之一。python中pow函数是什么意思?
pow(x, y[, z])返回两个数值的幂运算值或其与指定整数的模值。
1、函数有两个必需参数x,y和一个可选参数z,结果返回x的y次幂乘(相当于x**y),如果可选参数z有传入值,则返回幂乘之后再对z取模(相当于pow(x,y)%z)
>>> pow(2,3) 8 >>> 2**3 8 >>> pow(2,3,5) 3 >>> pow(2,3)%5 3
2、所有的参数必须是数值类型。
>>> pow('2',3) Traceback (most recent call last): File "<pyshell#462>", line 1, in <module> pow('2',3) TypeError: unsupported operand type(s) for ** or pow(): 'str' and 'int'
3、如果x,y有一个是浮点数,则结果将转换成浮点数
>>> pow(2,0.1) 1.0717734625362931 >>> 2**0.1 1.0717734625362931
4、如果x,y都是整数,则结果也是整数,除非y是负数;如果y是负数,则结果返回的是浮点数,浮点数不能取模,所以可选参数z不能传入值。
>>> pow(10, 2) 100 >>> pow(10, -2) 0.01 >>> pow(10, -2, 3) Traceback (most recent call last): File "<pyshell#469>", line 1, in <module> pow(10, -2, 3) ValueError: pow() 2nd argument cannot be negative when 3rd argument specified
5、如果可选参数z传入了值,x,y必须为整数,且y不能为负数。
>>> pow(2,3,5) 3 >>> pow(10,0.1,3) Traceback (most recent call last): File "<pyshell#472>", line 1, in <module> pow(10,0.1,3) TypeError: pow() 3rd argument not allowed unless all arguments are integers >>> pow(10,-2,3) Traceback (most recent call last): File "<pyshell#473>", line 1, in <module> pow(10,-2,3) ValueError: pow() 2nd argument cannot be negative when 3rd argument specified以上就是“python中pow函数是什么意思?(python中pow函数是什么意思)”的详细内容,想要了解更多Python教程欢迎持续关注编程学习网
扫码二维码 获取免费视频学习资料
- 本文固定链接: http://www.phpxs.com/post/9254/
- 转载请注明:转载必须在正文中标注并保留原文链接
- 扫码: 扫上方二维码获取免费视频资料
查 看2022高级编程视频教程免费获取