bpo-40066: Enum: adjust repr() to show only enum and member name (not value, nor angle brackets) and str() to show only member name. Update and improve documentation to match. bpo-40066: Enum’s repr() ...
In Python, we have a way to represent our objects within interpreters: repr. In IPython, it goes even further. We can register rich represenations of plots, tables, and all kinds of objects. As an ...