Commit c10a2533 by BellCodeEditor

save project

parent 4a818d0e
Showing with 7 additions and 7 deletions
...@@ -4,12 +4,12 @@ class Hero: ...@@ -4,12 +4,12 @@ class Hero:
self.level=1 self.level=1
self.hp=hp self.hp=hp
self.attack=attack self.attack=attack
yase=Hero('亚瑟',300,20) def upgrade(self):
self.level=self.level+1
self.hp=self.hp+50
self.attack=self.attack+4
# houyi=Hero('后羿',24,23) # houyi=Hero('后羿',24,23)
def upgrade(): yase=Hero('亚瑟',300,20)
yase.level=yase.level+1 yase.upgrade()
yase.hp=yase.hp+50
yase.attack=yase.attack+4
upgrade()
upgrade()
print(yase.level) print(yase.level)
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