class Hero: def __init__(self): self.level = 1 self.hp = 300 self.attack = 20 yase1 = Hero() print(yase.hp) yase2 = Hero() print(yase2.hp)