Hruthik kshruthik.hashnode.dev·Feb 3, 2024Mutable vs. Immutable in Python:Mutable: Mutable objects are those whose values or content can be changed after creation. Changes to mutable objects are reflected directly in the memory location where they are stored. Immutable: Immutable objects, on the other hand, cannot be ...10 likesPython
Varsha DRvarshatalkstech.hashnode.dev·Oct 10, 2023Mutable Data Structures : When to Use Them and When to Avoid ThemMutable data structures are data structures that can be modified once they are created. This means that when you make a change to a mutable data structure, you are actually modifying the existing data structure. Some examples of mutable data structur...1 like·81 readsdata structures