是否有任何标准方法可以获得Enumeration names by value?
一个例子:
class Example(enum.Enum):
one = 1
two = 2
ex_variable = 1
给定ex_variable
,我可以获取Example.one.name中包含的字符串吗?
答案 0 :(得分:51)
>>> Example(1).name
'one'
答案 1 :(得分:3)
致access the members of enums programatically:
>>> Example(ex_variable).name
'one'