+ 5
Why output are different
6 Respuestas
+ 3
https://stackoverflow.com/questions/2347265
> For types that support both __iadd__ and __add__ you therefore have to be careful which one you use. a += b will call __iadd__ and mutate a, whereas a = a + b will create a new object and assign it to a. They are not the same operation!
+ 1
list+=string
works as,
list = list + convertToList( string )
+ 1
hamletmun
nice that you have found such exact answer.
0
I saw another post like this stand by...
0
Too late for me...
0
where exactly are you headed to space?