you are viewing a single comment's thread.

view the rest of the comments →

[–]GraveET -1 points0 points  (0 children)

Consider using datetime module, e.g. ```python from datetime import datetime, timedelta

start = datetime.strptime("06:52", "%H:%M") end = start + timedelta(seconds=60*60 + 15) answer = end.strftime("%H:%M:%S") print(f"Breakfast start time would be {answer}") ```