Post

@PythonDvz B. Only the list is printing, not the `i` from the for loop. Nothing in the loop is modifying the list, so [1,2,3,4,5]
English

@PythonDvz Answer is B) [1,2,3,4,5]; the for-loop is unnecessary as it doesn't change anything...
English

@PythonDvz The answer is B [1,2,3,4,5].
Reason:
Variable 'i' stores the result of multiplication. But the result is not printed.
What is printed is the variable 'arr'.
English




