Data Analysis with Python - Numpy Operations

Tell us what’s happening:

a = np.arange(5)
a + 20

the real answer is array([20, 21, 22, 23, 24]). not [0, 1, 2, 3, 4] there are a mistake i think

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36

Challenge Information:

Data Analysis with Python - Numpy Operations

It’s not a mistake, this has fooled many people and been brought up on the forum many times.

What is the value of a? a is never re-assigned.