OK, so still on my path to learning Python where I encountered a weird behavior. Here's a snippet of code:
c1 = [2, 5, 8, 9]
c2 = 'hello'
Now, when I try to add the two lists with a c1 = c1 + c2
, I get an error, but c1 += c2
works fine as expected. Aren't the two exacty the same expressions?