Find the output of the following program. import numpy as np
data=np.array([10,20,30,40,50,60,70])
print(data[2:4])
Answers
Answered by
6
Output - "[30, 40]"
Please Mark this as Brainliest
And Thank Me
Similar questions