Skip to main content

Posts

Showing posts with the label mutable vs immutable

Mutable vs Immutable Data Types in Python Explained

When learning Python, one of the most important concepts to understand is the difference between   mutable   and   immutable   data types. To explain this concept, I'm going to break it down   step-by-step   with examples and visuals! 1. What Do "Mutable" and "Immutable" Mean? Mutable  means: You can change the object after it’s created. Immutable  means: Once the object is created, it cannot be changed. Think of it like this: Type Real-life Analogy Mutable A whiteboard: you can erase and write again Immutable A printed photo: once printed, you can’t change it 2. Immutable Data Types in Python These are data types that  cannot be changed  after they are created. Examples of Immutable Types: int float bool str tuple frozenset Example 1: Integers (int) a = 5 print (id(a)) # memory address of a a = a + 1 print (a) # 6 print (id(a)) # different memory address! Even though just added 1 to a, Python  created a new object in memo...