Commit 0d008fa8 by BellCodeEditor

save project

parent dfcbb1fe
Showing with 8 additions and 6 deletions
class Hero: class Hero:
def __init__(self,name,HP,attack): def __init__(self,name,HP,attack):
self.leve=1 self.level=1
self.name=name self.name=name
self.HP=HP self.HP=HP
self.attack=attack self.attack=attack
def shenji(self):
self.level=self.level+1
self.HP=self.HP+50
self.attack=self.attack+4
yase=Hero("亚瑟",300,20) yase=Hero("亚瑟",300,20)
houyi=Hero("后裔",240,23) houyi=Hero("后裔",240,23)
print("亚瑟的血量是",yase.HP) print("亚瑟的血量是",yase.HP)
print("后裔的血量是",houyi.HP) print("后裔的血量是",houyi.HP)
def shenji():
yase.leve=yase.leve+1 yase.shenji()
yase.HP=yase.HP+50
yase.attack=yase.attack+4
shenji()
print("亚瑟的血量是",yase.HP) print("亚瑟的血量是",yase.HP)
print("后裔的血量是",houyi.HP) print("后裔的血量是",houyi.HP)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment