Is there a resizable equivalent to numpy.array? Like this:
my_array.append(5)
As far as I know numpy.array has fixed size.
list
would be useless if my_array
stores too much data.
Any ideas?
Is there a resizable equivalent to numpy.array? Like this:
my_array.append(5)
As far as I know numpy.array has fixed size.
list
would be useless if my_array
stores too much data.
Any ideas?