return sorted(scores)[1:-1]
def isLeapYear(n): year = int(n) return (year % 400 == 0) or ((year % 10...