mutable and immutable in python

Solutions on MaxInterview for mutable and immutable in python by the best coders in the world

showing results for - "mutable and immutable in python"
Liah
27 Mar 2020
1IMMUTABLE datatypes (e.g. int, float, bool, str, tuple, unicode) cant be changed after they are created, 
2MUTABLE datatypes (e.g. list, set, dict, byte array) can be changed