Bootstrap

Python numpy 平方、乘方和平方根函数

import numpy


numpy.square()

pow(x, x)

numpy.sqrt()

pow(x, 0.5)


import math

math.sqrt()

;