Report Bug
Qus :

What will be the output of the following ?

import numpy as np
a = np.arange(1,5,2)
print(a)

Qus

निम्नलिखित का आउटपुट क्या होगा?

import numpy as np
a = np.arange(1,5,2)
print(a)


A. [1 3 5]
B. [1 3]
C. [1,3]
D. [1,2,3,4,5]


Solution
B. [1 3]



Explanation

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)




Report Bug