Создайте массив с неизвестным размером в Python

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