Skip to content

Instantly share code, notes, and snippets.

@pointofpresence
Last active March 31, 2024 20:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pointofpresence/0b967cf6a4f3c16963a9a06a18a0108b to your computer and use it in GitHub Desktop.
Save pointofpresence/0b967cf6a4f3c16963a9a06a18a0108b to your computer and use it in GitHub Desktop.
Python: Использование Enum
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