#immutable = cannot be changed
#Strings in python are inheritbly immutable. That doesn't mean you cant OVERwrite them, you can. But you can't, for example, change one indexed value
#in a string once it's created.
var = '12345678'
var = var + '15'
print(var)