Python - Standard Library Usage
What will be the output of this code?
from datetime import date, timedelta start = date(2024, 4, 25) new_date = start + timedelta(days=10) print(new_date)
