Hello,
I need help with this one please. Thank you.
Complete the following program using functions from the table above to find some statistics about basketball player Lebron James. The code below provides lists of various statistical categories for the years 2003-2013. Compute and print the following statistics:
Use loops where appropriate.
Here is the given code. Thank you.
#Lebron James: Statistics for 2003/2004 - 2012/2013
games_played = [79, 80, 79, 78, 75, 81, 76, 79, 62, 76]
points = [1654, 2175, 2478, 2132, 2250, 2304, 2258, 2111, 1683, 2036]
assists = [460, 636, 814, 701, 771, 762, 773, 663, 502, 535]
rebounds = [432, 588, 556, 526, 592, 613, 554, 590, 492, 610]
# Print total points
# Print Average PPG
# Print best scoring years (Ex: 2004/2005)
# Print worst scoring years (Ex: 2004/2005)
Unlock access to this and over
10,000 step-by-step explanations
Have an account? Log In