當前位置: 首頁>>代碼示例>>Python>>正文


Python Panthera.Panthera類代碼示例

本文整理匯總了Python中Panthera.Panthera的典型用法代碼示例。如果您正苦於以下問題:Python Panthera類的具體用法?Python Panthera怎麽用?Python Panthera使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了Panthera類的10個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: getOffspring

    def getOffspring(self, other):

        if isinstance(other, Liguar.Liguar):
            return Leoligulor()
        elif isinstance(other, Leopon):
            return Leopon()

        Panthera.getOffspring(self,other)
開發者ID:raygomez,項目名稱:panthera-hybird-namer,代碼行數:8,代碼來源:Leopon.py

示例2: getOffspring

 def getOffspring(self, other):
     if isinstance(other, Leopard):
         return Leopard()
     elif isinstance(other, Lion.Lion):
         return Leopon.Leopon()
     elif isinstance(other, Tiger.Tiger):
         return Leoger.Leoger()
     elif isinstance(other, Jaguar.Jaguar):
         return Leguar.Leguar()
     elif isinstance(other, Liger.Liger):
         return Leoliger.Leoliger()
     elif isinstance(other, Tigon.Tigon):
         return Leotigon.Leotigon()
     elif isinstance(other, Jagupard.Jagupard):
         return Leojagupard.Leojagupard()
     elif isinstance(other, Leguar.Leguar):
         return Leoleguar.Leoleguar()
     elif isinstance(other, Liguar.Liguar):
         return Leoliguar.Leoliguar()
     Panthera.getOffspring(self, other)
開發者ID:raygomez,項目名稱:panthera-hybird-namer,代碼行數:20,代碼來源:Leopard.py

示例3: __init__

 def __init__(self, gender=random.choice('MF')):
     Panthera.__init__(self, gender)
     self.generation = 3
開發者ID:raygomez,項目名稱:panthera-hybird-namer,代碼行數:3,代碼來源:Leoligulor.py

示例4: getOffspring

    def getOffspring(self, other):
        if isinstance(other, Leoligulor):
            return Leoligulor()

        Panthera.getOffspring(self, other)
開發者ID:raygomez,項目名稱:panthera-hybird-namer,代碼行數:5,代碼來源:Leoligulor.py

示例5: getOffspring

    def getOffspring(self, other):
        if isinstance(other, Jaglion):
            return Jaglion()

        Panthera.getOffspring(self, other)
開發者ID:raygomez,項目名稱:panthera-hybird-namer,代碼行數:5,代碼來源:JagLion.py

示例6: getOffspring

 def getOffspring(self, other):
     if isinstance(other, Tigard):
         return Tigard()
     Panthera.getOffspring(self,other)
開發者ID:raygomez,項目名稱:panthera-hybird-namer,代碼行數:4,代碼來源:Tigard.py

示例7: getOffspring

    def getOffspring(self, other):
        if isinstance(other, Litigon):
            return Litigon()

        Panthera.getOffspring(self, other)
開發者ID:raygomez,項目名稱:panthera-hybird-namer,代碼行數:5,代碼來源:Litigon.py

示例8: getOffspring

    def getOffspring(self, other):
        if isinstance(other, Leguar):
            return Leguar()

        Panthera.getOffspring(self,other)
開發者ID:raygomez,項目名稱:panthera-hybird-namer,代碼行數:5,代碼來源:Leguar.py

示例9: getOffspring

    def getOffspring(self, other):
        if isinstance(other, Liliger):
            return Liliger()

        Panthera.getOffspring(self,other)
開發者ID:raygomez,項目名稱:panthera-hybird-namer,代碼行數:5,代碼來源:Liliger.py

示例10: getOffspring

    def getOffspring(self, other):
        if isinstance(other, Jagjagupard):
            return Jagjagupard()

        Panthera.getOffspring(self, other)
開發者ID:raygomez,項目名稱:panthera-hybird-namer,代碼行數:5,代碼來源:Jagjagupard.py


注:本文中的Panthera.Panthera類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。