Crear matriz con tamaño desconocido en Python

a = np.array([])
for x in y:
    a = np.append(a, x)
Salty Joe