|
|
|
|
|
by throwaway2037
1023 days ago
|
|
To add to your list: During string concatenation, there is no automatic conversion to string. It results in an exception. It is infuriating. This code: "abc" + 123
... will raise this exception: TypeError: can only concatenate str (not "int") to str
I have wasted so many hours fixing this same bug, over and over again. |
|