how can I create an np array using expression y1 = x, when x array is already defined
x = [1,2,5,7]
from this array x , I would like to create another array y1 using the expression
y1 = x
using numpy
how can I create an np array using expression y1 = x, when x array is already defined
x = [1,2,5,7]
from this array x , I would like to create another array y1 using the expression
y1 = x
using numpy