Skip to content

Instantly share code, notes, and snippets.

@FaltoGH
Created April 17, 2021 18:46
Show Gist options
  • Save FaltoGH/98509a18206537ee404050a6f79313bc to your computer and use it in GitHub Desktop.
Save FaltoGH/98509a18206537ee404050a6f79313bc to your computer and use it in GitHub Desktop.
Second to Minute:Second!
def stms(s):
minute = s//60
second = s%60
minute, second = int(minute), int(second)
return f'{minute}:{second:02}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment