Answers for "what does mutable and immutable mean in python"

8

mutable and immutable in python

IMMUTABLE datatypes (e.g. int, float, bool, str, tuple, unicode) cant be changed after they are created, 
MUTABLE datatypes (e.g. list, set, dict, byte array) can be changed
Posted by: Guest on September-14-2021

Code answers related to "what does mutable and immutable mean in python"

Python Answers by Framework

Browse Popular Code Answers by Language