seconds-to-hr as a script as well
This commit is contained in:
parent
b34c6bc4ee
commit
998130ea46
1 changed files with 11 additions and 0 deletions
11
seconds-to-hr.py
Executable file
11
seconds-to-hr.py
Executable 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)
|
Loading…
Reference in a new issue