hi, a team of 3 people are playing. We need the sum of the best two scores.
>>> scores = [5,2,3] >>> scores.pop(scores.index(min(scores))) 2 >>> sum(scores) 8 can this be done in one line? (first line which initialises the variable is not counted). -- regards Kenneth Gonsalves -- regards Kenneth Gonsalves _______________________________________________ ILUGC Mailing List: http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
