+2 votes
in NumPy by
how to identified last number of numpy array?

1 Answer

0 votes
by

num = np.array([5,15,25,35]) if not added

print(‘\n forth position : ‘,num[3])

...