Buat array numpy kosong tanpa bentuk

    a = []
    for x in y:
        a.append(x)
    a = np.array(a)
Bewildered Barracuda