+ 2
What is mutable and immutable data types?
6 odpowiedzi
+ 3
There must be description also about mutable and immutable data types.
+ 2
What about arrays?
+ 2
Nick lists are mutable objects, because you can change them by inserting and removing elements. :)
+ 2
Python has an amazing variety of data structures that you can use to represent data, or combine them to create your own custom data.
A first fundamental distinction that Python makes on data is about whether or not the value of an object changes. If the value can change, the object is called mutable, while if the value cannot change, the object is called immutable.
+ 1
Mutable data types can be change
Immutable data types cannot be change
Thats just the simplest way to explain that
0
Thanks for answers