Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created July 23, 2020 21:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/d5fedc974ba16c8f932a09e83ac27444 to your computer and use it in GitHub Desktop.
Save parzibyte/d5fedc974ba16c8f932a09e83ac27444 to your computer and use it in GitHub Desktop.
# La ordenamos
juegos_ordenados = sorted(juegos, key=funcion_que_devuelve_clave)
print("Ordenada por calificación ascendente: ")
for juego in juegos_ordenados:
print(juego)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment