python中开平方

Python数字sqrt()函数返回x的平方根(x > 0)。

语法

以下是sqrt()方法的语法 –

import math
math.sqrt( x )

注意 – 此函数不可直接访问,需要导入math模块,然后需要使用math静态对象调用此函数。

开n次方

利用pow(a, b)函数即可。需要开a的r次方则pow(a, 1.0/r)。

推荐学习《python教程》

来源:PY学习网:原文地址:https://www.py.cn/article.html

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » python编程根号怎么打