An immutable object or variable is one programming element declared as immutable when created, such as when tring to modifing elements in this object the compiler returns an error
Once assigned, a variable cannot change its value.
~ Example:
myTuple = tuple((1,2,3,4))
myTuple[0] = 10 # This raise an error