What is the difference between a Mutable datatype and an Immutable data type?
Answer Posted / 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 |
Post New Answer View All Answers
What is string slicing in python?
What is the purpose of bytes() in python?
How to generate random numbers in python?
How many name spaces are defined in python?
Explain the Meaning of a single and double underscore before an object name?
Tell me how are arguments passed by value or by reference?
How can you organize your code to make it easier to change the base class?
What are the benefits of python?
Write an expression that evaluate to true?
What is __ getitem __?
What does ** (double star) and * (star) do for python parameters?
Name few python web frameworks for developing web applications?
What is the purpose of setup py?
List out atleast two loop control statements?
Do you know the number of keywords in python?