August 2018
Intermediate to advanced
366 pages
10h 14m
English
Enumeration is a common way to store values that can only represent a few states. Each symbolic name is bound to a specific value, usually numeric, that represents the states the enumeration can have.
Enumerations are very common in other programming languages, but until recently, Python didn't have any explicit support for enumerations.