Files
<pl-question-panel>
<p>To compute the mathematical expression:</p>
$$
\sum_{i=0}^{5} 2i^3
$$
<p>You wrote the following Python code:</p>
<pl-code language="python">a = 0
for i in range(5):
a += 3 * i ** 3</pl-code>
<p>Explain why this code will not work as intended.</p>
</pl-question-panel>
<pl-string-input answers-name="explanation" label="Explanation:"></pl-string-input>