Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python Functional Python Functional Workhorses Map and Filter

Create a function named is_over_13 with datetime woes.

Hello again!

So, here is my code for task one of this challenge. I've just come to accept that I'm not sure what is being asked of me. In this code you will see that:

a) it accepts 2 separate datetime (today as well as some other one) b) it creates a timedelta named how_many_days c) returns the truthiness of whether or not the day component of the timedelta is greater than or equal o 4745

I'm stumped.

birthdays.py
import datetime

birthdays = [
    datetime.datetime(2012, 4, 29),
    datetime.datetime(2006, 8, 9),
    datetime.datetime(1978, 5, 16),
    datetime.datetime(1981, 8, 15),
    datetime.datetime(2001, 7, 4),
    datetime.datetime(1999, 12, 30)
]

today = datetime.datetime.today()

def is_over_13(today, dt):
  how_many_days = today-dt
  return how_many_days.days >= 4745

In order to solve this challenge you need to remember the following:

  1. datetime objects have a year property
  2. the number of days in a year = 365

Knowing these two facts, we can tackle this challenge:

def is_over_13(datetime):
  return today.year * 365 - datetime.year * 365 >= 4745
Chris Freeman
Chris Freeman
Treehouse Moderator 68,423 Points

Nathan Krishnan, Your hint is in the right direction, but it only takes into account the year, but does not account for when in the year the date occurs.

1 Answer

Chris Freeman
MOD
Chris Freeman
Treehouse Moderator 68,423 Points

Adam Raitano, your code is very nearly correct. You don't need to pass today as an argument since it's defined as a global:

def is_over_13(dt):
    # compare total days
    delta = today - dt
    return delta.days >= 4745