Find the output of the following program impart numpy as no d=np.array ([10,20,30,40,50,60,70]) print (d[-4:)]
Answers
Answered by
2
Answer:
[40 50 60 70]
Explanation:
The program is wrong. use this one
import numpy as np
d=np.array ([10,20,30,40,50,60,70])
print (d[-4:])
Similar questions