Добавить 1 ко всем элементам в массиве Python

import numpy
a = [1, 1, 1 ,1, 1]
ar = numpy.array(a)
print ar + 2
Fancy Falcon