react 前端框架如何驱动企业数字化转型与创新发展
6172
2022-08-04
python中pow函数是什么意思?(python中pow函数是什么意思)
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 "
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 "
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 "
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 "
pow(10,-2,3)
ValueError: pow() 2nd argument cannot be negative when 3rd argument specified
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~