Answers for "create empty numpy array without shape"

1

create empty numpy array without shape

a = []
    for x in y:
        a.append(x)
    a = np.array(a)
Posted by: Guest on March-02-2020

Code answers related to "create empty numpy array without shape"

Python Answers by Framework

Browse Popular Code Answers by Language