uaveiro-leci/1ano/1semestre/fp/aula01/ex04.py

8 lines
183 B
Python
Raw Normal View History

secs = int(input('Segundos a converter para horas, minutos e segundos? '))
s = secs % 60
mins = secs // 60
m = mins % 60
h = mins // 60
2022-10-20 20:16:01 +00:00
print("{:02d}:{:02d}:{:02d}".format(h, m, s))