# Part 3 mini-project: Character Sheet -- starter.
#
# Finish this file so it prints a formatted character sheet at the
# end. See the chapter page for the full spec.
#
# Run with: python projects/02-character-sheet/starter.py

# TODO: prompt for name (text)
# print("Name:  ", end="")
# name = input()

# TODO: prompt for class (text)


# TODO: prompt for level (whole number) -- wrap input() in int()


# TODO: prompt for hp (whole number)


# TODO: prompt for mp (whole number)


# TODO: compute power = hp + mp * 2 + level * 10


# TODO: print the character sheet. Use f-strings for the labelled
# lines and "-" * n for the borders.
