Can anyone do descent using list comprehensions

I am interest in a different answer.

1 Like

sorted(l, reverse = True)

Only the input. The output involves finding the highest. I got my game loop down to three lines, including a comprehension:

while True:
    mountains = [ int(input()) for _ in range(8)]
    print(...answer...)