For example, enum members are distinct from integers, and they are composed of a name and a value . from enum import Enum class Animal(Enum): DOG = 1 CAT = 2 ...
確定! 回上一頁