fromenumimportEnumclassGenre(Enum):"""Genre categories for library books."""FICTION="fiction"NON_FICTION="non_fiction"SCIENCE="science"HISTORY="history"BIOGRAPHY="biography"deflabel(self)->str:"""Human-readable label for display."""returnself.value.replace("_","").title()