Commit 9196cdda by BellCodeEditor

auto save

parent f47689a4
Showing with 12 additions and 0 deletions
class hero:
def __init__(self,name,hp,attack):
self.name=name
self.level=1
self.hp=hp
self.attack=attack
yao = hero("耀",3000,600)
print("耀的血量为:",yao.hp)
print("耀的等级为:",yao.level)
print("耀的攻击为:",yao.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