0
What is the meaning of "+="
3 ответов
+ 3
Adding first the right element with left element and then assigning the same value to left element
E. G. a += b means
a = a + b
+ 1
Already answered so this is just for visitors who want to read further:
Python inplace (in-place) operators:
http://www.geeksforgeeks.org/inplace-operators-python-set-1iadd-isub-iconcat/
0
thanks bro