Instruction
Good job! It's time to finish this console application!
Exercise
The template presents all the code we've written so far, plus three simple functions that we wrote for you: print_header(), print_menu_options(), and create_players().
Your task is to complete the main() function and finish the app:
- Initialize the
playerslist (use acreate_players()function). - Print the header (use a
print_header()function). - Print the menu options (use a
print_menu_options()function). - Prompt the user for a menu option:
> Enter your choice:
- Invoke the
do_action()function with the given choice.
Stuck? Here's a hint!
Ad. 1: simply write:
players = create_players()
Ad. 4: use an input() function and assgin the result to a user_choice variable.
Ad. 5: invoke the do_action() function with arguments players and user_choice.



