Question: from numpy import array,arange c = arange(3) def A(): c[1:2] = 7 print(A(),c) Please explain step by step why the output is None [0 7
from numpy import array,arange c = arange(3) def A(): c[1:2] = 7 print(A(),c)
Please explain step by step why the output is
None [0 7 2]
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
