Python Enum

Dec 22, 2018
ImportError: No module named enum

If you are using < Python 3.4, you need to install enum34.

pip install enum34

Enum declaration

from enum import Enumclass ItemType(Enum):    PLACE = 1    PEOPLE = 2    OTHER = 9

Convert enum to string

ItemType.name

Convery enum to int

ItemType.value

Convert string to enum

ItemType['PLACE']

Convert int to enum

ItemType(1)

❤️ Is this article helpful?

Buy me a coffee ☕ or support my work via PayPal to keep this space 🖖 and ad-free.

Do send some 💖 to @d_luaz or share this article.

✨ By Desmond Lua

A dream boy who enjoys making apps, travelling and making youtube videos. Follow me on @d_luaz

👶 Apps I built

Travelopy - discover travel places in Malaysia, Singapore, Taiwan, Japan.