Unravelling rich comparison operators in Python

For the next part of my blog series on pulling apart Python’s syntactic sugar, I’m going to be tackling rich comparison operators: ==, !=, >, <, >=, <=. For this post I am going to be picking apart the example of a > b. … Read more

Similar