Report Bug
Qus :

What will be the output of the following ?

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

Qus

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

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


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


Solution
A. [ ]



Explanation

Hear step is not defined to the by default step is 1 so range is invalid and it generate an empty array 




Report Bug