点击运行
#!/usr/bin/python from enum import Enum class Color(Enum): RED = 1 GREEN = 2 YELLOW = 3 PURPLE = 1 print(len(Color)) # 3
运行结果 :
正在执行...