Search⌘ K
AI Features

Exercise: Project Deadline Calculator

Explore how to calculate project deadlines in Python by writing a function that converts start date strings to date objects, adds durations with timedelta, and returns deadline dates as strings. This lesson reinforces using the datetime module to handle date arithmetic accurately.

Problem statement

Our project management dashboard needs a feature to automatically determine deadline dates. Given a project start date (as a string) and a ...