Please explain why this code behave like this.
x=["a","b","c"]
x+="de"
print (x)
output := ['a', 'b', 'c', 'd', 'e']
why it out like above output ? why not it doesn't output like the below lines ?.i know that we can append the "de" to output like this.how the "+" operators works in list ?
output := ['a', 'b', 'c', 'de']