Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created March 26, 2019 05:04
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/8c80542c4958687bf4216da5be04a386 to your computer and use it in GitHub Desktop.
Save parzibyte/8c80542c4958687bf4216da5be04a386 to your computer and use it in GitHub Desktop.
segundos = 125
minutos = segundos // 60
segundos_sobrantes = segundos % 60 # Residuo de dividir entre 60
print("Minutos: {}, segundos: {}".format(minutos, segundos_sobrantes))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment