mutable et immuable à 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
Xerothermic Xenomorph