Post

@PythonDvz Strings in python are immutable.
That means, once a string object is created, it cannot be modified.
Here we are creating the string and trying to make a change to it.
But that gives an error because strings aren't mutable.
English

