Convert enum to dict in python
python - How to make a dict from an enum? - Stack Overflow
# Source - https://stackoverflow.com/a/60451617
# Posted by Chris Doyle
# Retrieved 2026-04-09, License - CC BY-SA 4.0
from enum import Enum
class Shake(Enum):
VANILLA = "vanilla"
CHOCOLATE = "choc"
COOKIES = "cookie"
MINT = "mint"
dct = {i.name: i.value for i in Shake}
print(dct)
Nel mezzo del deserto posso dire tutto quello che voglio.
comments powered by Disqus