Commit 436de7bb by BellCodeEditor

auto save

parent d6c81a0f
Showing with 20 additions and 0 deletions
class Hero:
def __init__(self,neme,hp,ateack):
self.level = 1
self.HP = hp
self.ateack = ateack
self.neme = neme
yase = Hero("亚瑟",300,30)
hoyi = Hero("后羿",270,35)
def a():
yase.level = yase.level + 1
yase.HP = yase.HP + 50
yase.ateack = yase.ateack + 10
a_yase()
print(yase.level)
print(yase.HP)
print(yase.ateack)
\ 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