InterviewSolution
Saved Bookmarks
| 1. |
Find the output of following program.import numpy as npd=np.array([10,20,30,40,50,60,70])print(d[-4:]) |
|
Answer» [40 50 60 70] |
|