A program runs `count = 3` and then `count = "three"`. Which description is accurate?
Explanation
The later assignment rebinds `count` from an integer object to a string object. Nothing converts the integer into text, and Python does not require a later binding to preserve the earlier object's type.