Commit 91f8afdb by BellCodeEditor

save project

parent d6c81a0f
Showing with 15 additions and 0 deletions
class Hero():
def __init__(self,name,hp,attaack):
self.level=9999999999999999999
self.name=name
self.hp=hp
self.attaack=attaack
yase=Hero("垭瑟",999999,990)
hoyi=Hero("后羿",999000,999)
print("垭瑟的生命值为",yase.hp)
print("后羿的生命值为",hoyi.hp)
def a():
yase.level=yase.level+1
yase.name=yase.name+90
yase.hp=yase.hp+100
a()
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