list fun.py. You are a fan of football. You will create a program that allows a user to enter players along with their team and jersey number and goals per season. The goals per season should be restricted to positive integers only. This data should be stored in a single tuple for each player. All of the players should be maintained in a list Once the user has entered the players, create lists representing the following: • Team Rosters (where a roster is a tuple with the team name and a list of players), this should be sorted by team name and the list of players on the team should be sorted by jersey number • Alphabetic list by last name (though show the name as First Last) for all players . Scoring list (from high to low) for all players • Team Ranks by total scores of players listed for the team roster (i.e. team with most goals per seasoon for all players is first, etc.)
list fun.py.
You are a fan of football. You will create a program that allows a user to enter players along with their team and jersey number and goals per season. The goals per season should be restricted to positive integers only.
This data should be stored in a single tuple for each player. All of the players should be maintained in a list.
Once the user has entered the players, create lists representing the following
Team Rosters (where a roster is a tuple with the team name and a list of players), this should be sorted by team name and the list of players on the team should be sorted by jersey number
Alphabetic list by last name (though show the name as First Last) for all players
Scoring list (from high to low) for all players
Team Ranks by total scores of players listed for the team roster (i.e. team with most goals per seasoon for all players is first, etc.)
Step by step
Solved in 3 steps