|
|
|
|
|
by davidwtbuxton
2646 days ago
|
|
Yes, but I still want this for combining dictionaries. Python already violates this property, I don't find it confusing. Python 3.7.2 (default, Dec 30 2018, 08:55:50)
[Clang 10.0.0 (clang-1000.11.45.5)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> 'foo' + 'bar' == 'bar' + 'foo'
False
>>> ['foo'] + ['bar'] == ['bar'] + ['foo']
False
|
|