Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- def to_hmsms(seconds):
- """
- Returns hours, minutes, seconds, miliseconds as int
- """
- minutes, seconds = divmod(seconds, 60)
- hours, minutes = divmod(minutes, 60)
- return int(hours), int(minutes), round(seconds), round((seconds - int(seconds))*1000)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement