+ 1
Python bug or feature? : list as a tuple item gets reassigned, raising error but still successful!
I try to re-assign a tuple item which is a list, by adding one more element to the list. Of course an error shows up because tuple item canât get re-assigned. But itâs interesting that, although I got an exception (an error), the item actually get re-assigned! Can someone explain what happened? P/S: just run my attached code first. My idea expressed out well there! https://code.sololearn.com/c1obOiFrUk9c/?ref=app
5 Antworten
+ 1
Well, you have to know that when using += operator, you effectively calling __iadd__ method of first operand with second operand like params, and assigning result to first operand. In your case:
animal_tuple[2]= animal_tuple[2].__iadd__(['panther'])
Then python execute FIRST the __iadd__ method (and its perfectly possible) which append ['panter'] and return itself (the modified list), then, AFTER, it try to assign to animal_tuple[2] to it and THIS cause an error becuase assignement its no allowed on tuple BUT AT THIS POINT THE ITEM LIST IS YET MODIFIED
+ 6
tuple1 += tuple2 doesn't append tuple2 to tuple1, but redefines tuple1 as tuple1 + tuple2. That's perfectly possible.
.append, .pop etc. are list operations and don't change the tuple. The tuple still consists of the same items as before (two strings and a list), you're just modifying the list "internally".
By using animal_tuple[2] = temp you're trying to change what the tuple holds at index 2. That's a change of the tuple itself and isn't allowed.
The problem with animal_tuple[2] += ['panther'] is probably that list += element works for lists, but python doesn't know animal_tuple[2] += ['panther'] is an operation that aims on the list element and not on the tuple as such. tuple[index] += element raises a TypeError because you can't change the value of a tuple. However in this specific case, tuple[index] += element is possible because tuple[index] is a list. So it's an error (in general) that works in this specific case.
/Edit: By the way, I'm just trying to find an explanation for what's happening. I'm not saying that the behavior is not a bug. Actually I think that the fact that a statement can be executed as planned AND raises an exception at the same time is at least a bit... surprising :D
+ 1
Dear Anna , youâre trying to help me again. Lovely! So you enjoyed the magic just the way I did.
By the way, I think that KroW has the answer for us. That is what I (and maybe you Anna too) felt-thought of the way Python behaves in this case, but couldnât explain clearly and technically.
Dear KrOW , your answer is very excellent. Thank you so much!!! I didnât expect a method like __iadd__() is the âreal existenceâ of the â+=â operator.
I will do more research in the depth of Python to know what it really does.
+ 1
Pela Lala I simplified all because its not mandatory call to __iadd__ but this happen on lists... Anyway, you are welcome đđđ