Python中**pow()和math.pow()的区别

Posted Channing Lewis

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python中**pow()和math.pow()的区别相关的知识,希望对你有一定的参考价值。

import math

print(2 ** 3)  # 8,两个数都是int,返回int
print(2.0 ** 3)  # 8.0,至少一个数为float则结果为float

print(pow(2, 3))  # 8,和**的规则相同
print(pow(2, 3.0))  # 8.0

print(math.pow(2, 3))  # 8.0,默认返回float,即使两个数都是int
print(math.pow(2.0, 3.0))  # 8.0

以上是关于Python中**pow()和math.pow()的区别的主要内容,如果未能解决你的问题,请参考以下文章

python函数深入浅出 11.math.pow()及其相关函数详解

Python的pow函数

charAt() 和 Math.pow()

Math.pow 是不是比使用临时分配的乘法更昂贵?

Python练习题?

ECMAScript 2016 求幂运算符和 Math.pow() 之间的区别