fruit = 'Banana'
fruit[0] = 'b'
# This will give us
# TypeError: 'str' object does not support item assignment
# That means we cannot change the original string
# But we can do the following
x = fruit.lower()
# The original string doesn't change, and we get only a copy of fruit
print(x)