import numpy as np

x = np.array([1, 2, 3])

print(x + 100)
print(x * 2)

[101 102 103]
[2 4 6]