1
1.1kviews
Differentiate Mutable Data types and Immutable Data types.
1 Answer
| written 3.6 years ago by |
The Python data objects can be broadly categorized into two–mutable and immutable types, in simple words changeable or modifiable and non-modifiable types.
1. Immutable types
The immutable types are those that can never change their value in place. In Python, the following types are immutable:integers, floating …