# Homework 23, problem 1: Player record. # # Build a player dict with at least: # name (str), class (str), level (int), alive (bool). # Then use .items() to print each key and value on its own line. # # Run with: python exercises/23/homework/01-player-record.py # Your code goes here: