Immutable data types:
*
Individual characters of strings are not assignable
foo = "bar"
foo[0] = "c" # Error
Immutable variable value can not be changed once they are created.