# Homework 11, problem 1: Player vitals. # # Declare four variables: # name -- a string # level -- a number (whole) # hit_points -- a number # alive -- a boolean (True or False) # # Then print each one on its own line with a label, for example: # Name: Keiko # Level: 7 # Hit points: 95 # Alive: True # # Run with: python exercises/11/homework/01-player-vitals.py # Your code goes here: