For Python variables and types, which statements correctly classify mutability? Select all that apply.
Explanation
Lists and dictionaries support changes to their existing contents, while integers and strings do not change in place. Rebinding a name from one integer or string to another can look like mutation, but it points the name at a different immutable object.