Instruction
Good job! The last menu option to implement is finding the player who has played for the greatest number of clubs.
Exercise
Create a function named show_player_most_clubs(players). The function should find the player with the most former clubs and print that player's data. Use the find_most_former_clubs(players) function.
Stuck? Here's a hint!
Simply use:
print_player(find_most_former_clubs(players))



