This commit is contained in:
Borzutzki Robert 2024-11-25 22:38:30 +01:00
parent 42fcbc34d2
commit bc15edfa11

View File

@ -45,7 +45,7 @@ start_time = date.today()
print(start_time.strftime("%d.%m.%Y")) print(start_time.strftime("%d.%m.%Y"))
ruhestand = date(2025, 6, 10) ruhestand = date(2025, 6, 10)
# Zeitdelta berechnen # Zeitdelta berechnen
duration = end_time - start_time duration = ruhestand - start_time
print(duration) # Ausgabe: 9 Tage, 2:30:00 print(duration) # Ausgabe: 9 Tage, 2:30:00
def init_monitor(): def init_monitor():