+1 vote
in Class 12 by kratos

Find the output of following program.

import numpy as np

d=np.array([10,20,30,40,50,60,70])

print(d[-4:])

1 Answer

+6 votes
by kratos
 
Best answer

[40 50 60 70]

...