Hi all,
another question....
I have a data structure which consists of a game players name and their scores, I have use lists within lists (2D):
results = [["Ben", 15, 18,25], ["George", 25, 35, 85], ["Evie", 2, 54, 84]]
What I want to do is work out the average for each player and then sort by the highest average score.
any idea?
Thanks in advance
another question....
I have a data structure which consists of a game players name and their scores, I have use lists within lists (2D):
results = [["Ben", 15, 18,25], ["George", 25, 35, 85], ["Evie", 2, 54, 84]]
What I want to do is work out the average for each player and then sort by the highest average score.
any idea?
Thanks in advance
Comment