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. ])