If python did not have operator overloading it would not be used for numeric programming to the extent it is. Overloading is key to its success in that field.
The problem is thinking `+' and `+=' are the same, they are not and `+' should not be used when `+=' can be used.
Comments
If python did not have operator overloading it would not be used for numeric programming to the extent it is. Overloading is key to its success in that field.
The problem is thinking `+' and `+=' are the same, they are not and `+' should not be used when `+=' can be used.