In python, are strings mutable? The line someString[3] = "a"
throws the error
TypeError: 'str' object does not support item assignment
I can see why (as I could have written someString[3] = "test" and that would obviously be illegal) but is there a method to do this in python?