✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
What is the value of j after three iterations of the following loop?
j = np.linspace(0,20,5);
for m in range(len(j)):
j[m] = j[m]*2;