# Homework 27, problem 2: Character class. # # Build a Character class with: # Character(name, hp) # take_damage(amount) # heal(amount) # is_alive() # report() -- prints name + HP + alive status # # Walk through: damage 30, report, damage 80 (HP should clamp at 0), # report, heal 20, report. # # Run with: python exercises/27/homework/02-character.py # Your code goes here: