Python3_Data_Structures
Python3_Data_Structures copied to clipboard
Improve comparison with None
- Operators '!=' and '==' call the ' eq' method of a class which can give unwanted results.
- Better way is to use is and is not instead of them.