Question
Which statement best describes dynamic typing in Python?
Select an option. Your answer will be checked instantly.
Correct Answer: C. A variable name can later refer to an object of a different type
Explanation:
Python determines types at runtime based on the objects to which names are bound. The same name may be reassigned from an integer to a string or another object type.
Leave a Reply