I would like to know if there is any way to get a square root to a list?
TypeError: only size-1 arrays can be converted to Python scalars
import math
import numpy as np
secuencia_1=5
secuencia_2=[7, 2, 4, 8, -1, -6, 5, -3]
ar=np.array(secuencia_2)
r=np.prod((math.sqrt(secuencia_1*secuencia_1)))
g=((ar*ar))
d=(math.sqrt(ar*ar))
print(d)