+2 votes
in NumPy by
if we don’t know last number of position how to show it by pragmatically ?

1 Answer

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

print(‘\n last indexing done by -1 position : ‘,num[-1])
...