Study Drills
Use Person_new() to create a few more people.
Add a new function hit(), which makes one person hit another person.
Give people hit points in their dict and have hit() randomly reduce each person’s hit points. You’ll need random() for this.
Add a job attribute to person and give different jobs different hit points, damage, and dialogue. For example, a “boxer” would have more HP and damage than a person with the job “baby.” Python has way better tools for this same problem, but for this code it is a fun challenge.
Finally, have your code run a little fight club using loops to make different people battle.