Commit e228e936 by BellCodeEditor

auto save

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