摘要: 1、枚举 可读性更强 from enum import Enum class VIP(Enum): YELLOW = 1 GREEN = 2 BALCK = 3 RED = 4 print(VIP.BALCK) print(type(VIP.BALCK)) # [Running] python -u 阅读全文
posted @ 2020-08-07 15:41 XiaoLee-C 阅读(566) 评论(0) 推荐(0) 编辑