why python strings are immutable? justify in short way
Answers
Answered by
3
Answer:
An object's mutability is determined by its type. ..... Other objects like integer, floats, string and tuple are object that can not be changed. Strings are immutable. Strings are immutable in Python, which means you can not change an existing string.
Similar questions