python中负数次方怎么表示?
python中表示负数次方的方法:
python中的“**”运算符是幂运算,可以计算一个数的次幂。
>>> -9 ** 0.5 -3.0 >>> - (9 ** 0.5) -3.0 >>> 9 ** -0.5 0.3333333333333333 >>> 9 ** 0.5 3.0
更多Python知识请关注云海天python教程网。
来源:PY学习网:原文地址:https://www.py.cn/article.html
python中表示负数次方的方法:
python中的“**”运算符是幂运算,可以计算一个数的次幂。
>>> -9 ** 0.5 -3.0 >>> - (9 ** 0.5) -3.0 >>> 9 ** -0.5 0.3333333333333333 >>> 9 ** 0.5 3.0
更多Python知识请关注云海天python教程网。
来源:PY学习网:原文地址:https://www.py.cn/article.html