So I have these lists:
Player1 = ["Ryan", 24, 19]
Player2 = ["Jamie", 22, 24]
Player3 = ["Alicia", 17, 15]
Player4 = ["Dominique", 13, 11]
Player5 = ["Michael", 18, 23]
PlayerList = [Player1, Player2, Player3, Player4, Player5]
The format is [Player's name, first round score, second round score]
How to write a code to find the highest value, as well as the average for first and second scores respectively?
EDIT: I think I might need to print the 'name of the players with the highest score' instead of the 'highest score' but I don't know how to do that :\