# A small Hero class (provided). class Hero: def __init__(self, name, hp): self.name = name self.hp = hp self.max_hp = hp # Homework 28: 04-strongest # TODO: build a party list and solve the task (see the chapter).