Python中枚舉的使用

from enum import Enum class Color(Enum):     red = 1     orange = 2     yellow = 3 print(Color.red) # 直接獲取key print(Color.orange) print(Color.red.name) # 獲取key.name print(Color.red.value) # 獲取k
相關文章
相關標籤/搜索