Snippets tagged “enumeration”
1 snippet uses this tag.
- How can I represent an 'Enum' in Python?Python
In Python, you can represent an Enum (enumeration) by using the enum module or by creating a class that inherits from enum.Enum.
1 snippet uses this tag.
In Python, you can represent an Enum (enumeration) by using the enum module or by creating a class that inherits from enum.Enum.