Last active
March 31, 2024 20:11
-
-
Save pointofpresence/0b967cf6a4f3c16963a9a06a18a0108b to your computer and use it in GitHub Desktop.
Python: Использование Enum
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from enum import Enum, auto | |
class Color(Enum): | |
RED = auto() | |
BLUE = auto() | |
GREEN = auto() | |
list(Color) # [<Color.RED: 1>, <Color.BLUE: 2>, <Color.GREEN: 3>] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment