In Data Analysis with Python course, Numpy operation module mcq has incorrect answer.
a = np.arange(5)
a + 20
Answer is [20, 21, 22, 23, 24]
Is it correct?
In Data Analysis with Python course, Numpy operation module mcq has incorrect answer.
a = np.arange(5)
a + 20
Answer is [20, 21, 22, 23, 24]
Is it correct?
The answer in the course is correct
This line does not change the value stored in a
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.