OverIQ.com
Run (or Hit F9)
s = "hello" print(id(s)) s += " world" print(s) print(id(s)) s[0] = 'y' # Error