Commit 847110bb by BellCodeEditor

save project

parent d6c81a0f
Showing with 18 additions and 0 deletions
class Hero:
def __init__(self,name,hp,atk):
self.hp = hp
self.name = name
self.atk = atk
yase = Hero("yase",500,59)
houyi = Hero("houyi",560,79)
def upgrade():
yase.hp = yase.hp+50
yase.atk = yase.atk+4
print()
upgrade()
upgrade()
print(yase.atk)
\ 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