Basic python-5(QNA)
Q1: What do you understand by mutability? What does “in place” task mean? A1: Mutability refers to the capability of an object (like a list or dictionary in Python) to be changed after it is created. If an object can be changed, then it is called mutable. Conversely, if an object cannot be changed, it …