What is the difference between a Mutable datatype and an Immutable data type?
Answer / nashiinformaticssolutions
Data types that are mutable can be altered at runtime. For instance, a dictionary, list, etc.
Immutable data types cannot be changed at runtime, so they cannot be altered. For instance, String, Tuple, etc.
| Is This Answer Correct ? | 0 Yes | 0 No |
How to read a 10gb (or larger) file size in python?
What is a from import statement and write the syntax for it?
How would you convert a string into lowercase in python?
How do you escape a string in python?
How is Multithreading achieved in Python?
Explain about odbc and python?
What does the break keyword refer to in python?
What is dogpile effect?
How do I apply a method to a sequence of objects?
What's the difference between list and tuples?
What is “call by reference” in python?
How to count the occurrences of a list item?