from math import sqrt
from numpy import array

a = array([[1,2,3],[4,5,6]],float)

b = list(map(sqrt,a))

print(b)

print(a.size)

print(a.shape)