python如何求平方根

慕仙森
浏览 3921回答 2
2回答

慕斯709654

Python求平方根至少有三种方式1.最简单的方式是求0.5次方14 ** 0.52.使用math包的sqrt函数1math.sqrt(4)3.使用numpy包的sqrt函数1numpy.sqrt(4)

qq_遁去的一_1

12In [39]: 4**0.5Out[39]: 2.0也可以使用cmath模块:1234In [35]: import cmathIn [36]: cmath.sqrt(-1)Out[36]: 1jIn [37]:如果是对数组操作,则可以使用数组的numpy.sqrt()函数:12345In [37]: a = np.arange(10)In [38]: np.sqrt(a)Out[38]: array([ 0.        ,  1.        ,  1.41421356,  1.73205081,  2.        ,        2.23606798,  2.44948974,  2.64575131,  2.82842712,  3.        ])
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python