1. Color.RED is Color.RED #True
    2. Color.RED is Color.BLUE #False
    3. Color.BLUE == Color.RED
    4. Color.BLUE != Color.RED
    5. Color.RED < Color.BLUE
    6. Traceback (most recent call last):
    7. File "<stdin>", line 1, in <module>
    8. TypeError: '<' not supported between instances of 'Color' and 'Color'