Defining classes with total ordering
The total_ordering
decorator is helpful for creating new class definitions that implement a rich set of comparison operators. This might apply to numeric classes that subclass numbers.Number
. It may also apply to semi-numeric classes.
As an example of a semi-numeric class, consider a playing card. It has a numeric rank and a symbolic suit. The rank matters only when doing simulations of some games. This is particularly important when simulating casino Blackjack. Like numbers, cards have an ordering. We often sum the point values of each card, making them number-like. However, multiplication of card × card doesn't really make any sense.
We can almost emulate a playing card with a namedtuple()
function as follows:
Card1 = namedtuple("Card1", ("rank", "suit"))
This suffers from a profound limitation: all comparisons include both a rank and a suit by default. This leads to the following awkward behavior:
>>> c2s= Card1(2, '\u2660') >>> c2h...