Python: Mutable Vs Immutable Data Types
Python: Mutable Vs Immutable Data Types
In Python, Objects can be categorized using their update model i.e. can objects be changed once created ? Using this concept python has two types of data types.
Mutable
Immutable
CategoryData TypesMutableLists, Dictionaries, SetsImmutableNumbers, Strings, Tuples, Frozensets Immutable :
Objects whose values can not be changed after creation. Example : Numbers, Strings etc. Let’s take an…
View On WordPress















