+2 votes
in NumPy by
Print 5 zeros in NumPy

1 Answer

0 votes
by
arr = np.zeros(5)

print(‘single arrya’,arr)
...