3
によって列挙名を取得しますEnumeration names by value?
値
例を取得するための任意の標準的な方法があります。
ex_variable
考える
class Example(enum.Enum):
one = 1
two = 2
ex_variable = 1
、私はExample.one.nameに含まれる文字列を取得することができますか?
によって列挙名を取得しますEnumeration names by value?
値
例を取得するための任意の標準的な方法があります。
ex_variable
考える
class Example(enum.Enum):
one = 1
two = 2
ex_variable = 1
、私はExample.one.nameに含まれる文字列を取得することができますか?
>>> Example(1).name
'one'
see the Python docs。 access the members of enums programaticallyへ
:
>>> Example(ex_variable).name
'one'