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

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » python中负数次方怎么表示?