Deals Of The Week - hours only!Up to 80% off on all courses and bundles.-Close
Introduction
NBA Stats Application
The Helper Function
Core Functions
Menu Functions
16. Menu option – find the player with the most former clubs
Putting it all together

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))