مشاركه مشروع بسيط 1

total_seconds = int(input("Please enter the number of seconds: "))
hours = total_seconds // 3600
minutes = (total_seconds % 3600) // 60
seconds = total_seconds % 60
print(str(hours) + ":" + str(minutes) + ":" + str(seconds))

4 إعجابات