Python doesn't have a dedicated syntax for enums, but the enum module in the Python standard library provides support for enumerations through the Enum class.
This video course teaches how to create enums, interact with them, customize them, and use specialized enum types like IntEnum, IntFlag, and Flag.