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
12. Finding the player with the most clubs
Menu Functions
Putting it all together

Instruction

Well done! The last core function we need should return the player with the greatest number of former clubs. Let's get down to work!

Exercise

Create a function named find_most_former_clubs(players). The function should return the tuple of the player who has played for most clubs.

Stuck? Here's a hint!

You will need a lambda expression with the following body:

len(player[6])