Commit e6cccb37 by BellCodeEditor

save project

parent d6c81a0f
Showing with 13 additions and 0 deletions
class Hero():
def __init__(self,HP,attack,level):
self.HP = HP
self.attack = attack
self.level = level
yase=Hero(100,100,1)
def xo():
yase.HP=yase.HP+100
yase.attack=yase.attack+100
yase.level=yase.level+1
xo()
print(yase.level)
\ 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