Commit 74d6d431 by BellCodeEditor

save project

parent c5e3290e
Showing with 10 additions and 6 deletions
class Hero:
def __init__(self):
def __init__(self,name,hp,attack):
self.level = 1
self.hp = 300
self.attack = 100
yase = Hero()
self.hp = hp
self.attack = attack
yase = Hero("亚瑟",300,20)
houyi = Hero("后羿",240,23)
print("亚瑟等级是",yase.level)
print("亚瑟生命值是",yase.hp)
print("亚瑟攻击力是",yase.attack)
\ No newline at end of file
print("亚瑟攻击力是",yase.attack)
print("后羿等级是",houyi.level)
print("后羿生命值是",houyi.hp)
print("后羿攻击力是",houyi.attack)
\ 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