https://docs.python.org/3/library/operator.html The big ones are `in` would become `contains` (and I would add `in_`), we already have a `contains` but that could be repurposed. The methods would be: * lt * le * eq * ne * ge * gt * `not_` * `and_` * `or_` * `in_` * contains
https://docs.python.org/3/library/operator.html
The big ones are
inwould becomecontains(and I would addin_), we already have acontainsbut that could be repurposed.The methods would be:
not_and_or_in_