Commit 3f15277f by BellCodeEditor

save project

parent 17b5f568
Showing with 9 additions and 2 deletions
...@@ -19,8 +19,14 @@ class Hero(object): ...@@ -19,8 +19,14 @@ class Hero(object):
info = info = info1+info2+info3 info = info = info1+info2+info3
print(info) print(info)
exit() exit()
class Player(Hero):
def __init__(self,name)
super().__init__(name)
self.hp = 200
self.attack = 50
Player = Player("佩奇")
print("玩家的血量值为:",player.hp)
print("玩家的攻击力为:",player.attack)
kunkun = Hero("坤坤") kunkun = Hero("坤坤")
peiqi = Hero("佩奇") peiqi = Hero("佩奇")
peiqi.combat(kunkun) peiqi.combat(kunkun)
\ No newline at end of file
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