摘要: 1 #Python高级语法与用法 2 #枚举 3 from enum import Enum, IntEnum,unique 4 5 6 class VIP(Enum): 7 YELLOW = 1 8 GREEN = 2 9 BLACK = 3 10 RED = 4 11 12 class VIP1 阅读全文
posted @ 2020-07-09 09:47 霜井 阅读(178) 评论(0) 推荐(0) 编辑