Commit 0d008fa8 by BellCodeEditor

save project

parent dfcbb1fe
Showing with 9 additions and 8 deletions
class Hero:
def __init__(self,name,HP,attack):
self.leve=1
self.level=1
self.name=name
self.HP=HP
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)
houyi=Hero("后裔",240,23)
print("亚瑟的血量是",yase.HP)
print("后裔的血量是",houyi.HP)
def shenji():
yase.leve=yase.leve+1
yase.HP=yase.HP+50
yase.attack=yase.attack+4
shenji()
yase.shenji()
print("亚瑟的血量是",yase.HP)
print("后裔的血量是",houyi.HP)
\ No newline at end of file
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