After for count in [4, 7]: pass completes normally, which statement describes count?
Explanation
The loop target remains bound after a nonempty for loop, and the last assignment to count used the final item, 7. Python does not automatically delete the target or restore an older binding when the loop ends.