If you want to add an element use append()
a = numpy.append(a, 1)
in this case add the 1 at the end of the array
If you want to insert an element use insert()
a = numpy.insert(a, index, 1)
in this case you can put the 1 where you desire, using index to set the position in the array.