import numpy as np

# create 1D array with a single 1 in the fifth position
null_vector = np.eye(1, 10, k=4)

print(null_vector)