importTo add elements to a numpy as np
dummy = []array you can use the method 'append' passing it the array and the element that you want to add. For example:
dummy = np.append(dummy,12)import numpy as np dummy = [] dummy = np.append(dummy,12)
#thisthis will add new items in create an empty numpy array and add the number '12' to it