seconds-to-hr as a script as well

This commit is contained in:
Von Random 2016-04-27 14:45:46 +03:00
parent b34c6bc4ee
commit 998130ea46

11
seconds-to-hr.py Executable file
View file

@ -0,0 +1,11 @@
#!/usr/bin/env python2
from sys import argv
input = int(argv[1])
result = str()
days = input // 86400
hours = input // 3600 % 24
minutes = input // 60 % 60
seconds = input % 60
result = '{}d {}h {}m {}s'.format(days, hours, minutes, seconds)
print(result)