python使用enum进行枚举的比较
python使用enum进行枚举的比较
1、说明
(1)枚举成员未被排序,因此它们仅支持通过is和==进行比较。大小比较引发TypeError异常。
(2)继承IntEnum类创建的枚举类,成员间支持大小比较。
2、实例
importenum
classBugStatus(enum.Enum):
new=7
incomplete=6
invalid=5
wont_fix=4
in_progress=3
fix_committed=2
fix_released=1
actual_state=BugStatus.wont_fix
desired_state=BugStatus.fix_released
print('Equality:',
actual_state==desired_state,
actual_state==BugStatus.wont_fix)
print('Identity:',
actual_stateisdesired_state,
actual_stateisBugStatus.wont_fix)
print('Orderedbyvalue:')
try:
print('\n'.join(''+s.nameforsinsorted(BugStatus)))
exceptTypeErroraserr:
print('Cannotsort:{}'.format(err))
#output
#Equality:FalseTrue
#Identity:FalseTrue
#Orderedbyvalue:
#Cannotsort:'<'notsupportedbetweeninstancesof'BugStatus'and'BugStatus'
以上就是python使用enum进行枚举比较的方法,希望对大家有所帮助。更多Python学习教程请关注IT培训机构:千锋教育。
相关推荐HOT
更多>>python字符串需要注意的语法问题
python字符串需要注意的语法问题语法错误是经常发生的一个错误。当一个程序包含非法的Python代码时,会产生语法错误。举例来说,在包含单引号的...详情>>
2023-11-14 18:23:24python函数标注是什么
python函数标注是什么在参数的使用方法中,还有一种解包的情况是需要我们掌握的。比如,将列表或者字典的值转换为函数的参数,就需要用到参数解...详情>>
2023-11-14 14:13:35python正负索引的使用
python正负索引的使用本文教程操作环境:windows7系统、Python3.9.1,DELLG3电脑。1、说明使用正索引(从左至右)、负索引(从右至左)访问元素,时...详情>>
2023-11-14 13:45:04python垃圾回收的机制过程
python垃圾回收的机制过程本文教程操作环境:windows7系统、Python3.9.1,DELLG3电脑。1、步骤(1)收集所有容器对象(list,dict,tuple,customClas...详情>>
2023-11-14 13:05:15