Commit e228e936 by BellCodeEditor

auto save

parent 1528a738
Showing with 9 additions and 9 deletions
class Dog:
def __init__(self,name,hp,attack):
self.name=name
self.hp=hp
self.attack=attack
yase=Dog("yase",250,99999999999999999999)
print(yase.attack)
\ No newline at end of file
class Hero:
def __init__(self,name):
self.level = 1
self.hp = 250
self.attack = 40
self.name = name
yase = Hero("垭瑟")
print(yase.name)
\ 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