Python 官方文档:入门教程 => 点击学习
Author: LiChong0309 Label: python 1. 两个函数 1.1 pow() 1.2 sqrt() 2. 两个函数库 2.1 numpy 2.2 math 1.1 pow()
Author: LiChong0309
Label: python
pow(a,b) :求a^b的数值。当a为整数时,返回整数值,当a为浮点数时,返回一位小数的浮点数。
sqrt()函数不能单独使用,要先调用函数库math或者numpy才能使用。当开方得到是有限数时,返回一位小数的浮点数。
import numpy
numpy.sqrt(64)
import math
math.sqrt(36)
--结束END--
本文标题: Python--计算、开方、乘方函数
本文链接: https://lsjlt.com/news/184640.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0