What will be the output of the following ?
import numpy as npa = np.arange(1,5,2)print(a)
निम्नलिखित का आउटपुट क्या होगा?
A. [1 3 5]
B. [1 3]
C. [1,3]
D. [1,2,3,4,5]
numpy.arange() function is used to create a numpy array from specified range. The Complete syntax of aranage function is :
arange(start,stop,step,dtype)