在python 2.7中重用Enum值

时间:2019-03-13 10:20:27

标签: python python-2.7

我无法在python2.7中的两个枚举之间重用相同的常量

import org.scalajs.dom

if(js.typeOf(dom.document) == "undefined") {
  println("I'm fairly confident I'm a webworker")
} else {
  println("I'm fairly confident I'm in the renderer thread")
}

我希望Animal2也具有HORSE和DOG,但这给了

from enum import Enum

class Animal1(Enum):
    HORSE = 1
    DOG = 2

class Animal2(Animal1):
    CAT = 3

在没有重复代码的情况下实现此目标的最佳方法是什么?

0 个答案:

没有答案