Python Programming - Arrays - Discussion

Discussion Forum : Arrays - General Questions (Q.No. 95)
95.
What does the NumPy function numpy.arange(1, 10, 2) generate?
[1, 3, 5, 7, 9]
[1, 2, 3, 4, 5, 6, 7, 8, 9]
[2, 4, 6, 8, 10]
[1, 4, 7]
Answer: Option
Explanation:
The numpy.arange() function generates an array with evenly spaced values.
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.