我无法在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
在没有重复代码的情况下实现此目标的最佳方法是什么?