We know that ‘a’ and ‘A’ are not same having different ASCII value.
Immutability of Strings:
Immutable means once a string is created, it can’t be edited or modified.
a='abc'
a=a.upper()
String a changes to ‘ABC’. So the value got changed right ? Help me understand where am I missing.
Thank you.