In C++, I can create a array like...
int* a = new int[10];
in python,I just know that I can declare a list,than append some items,or like..
fix_array = numpy.empty(n, dtype = object)
where n is the size of your array
though it works, it may not be the best idea as you have to import a library for this purpose. Hope this helps!