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 trialStefan Vaziri
17,453 PointsHelp
How do I pull the year? Do I need to state "year" = 2012?
import datetime
dates = [
datetime.datetime(2012, 12, 15),
datetime.datetime(1987, 8, 20),
datetime.datetime(1965, 2, 28),
datetime.datetime(2015, 4, 29),
datetime.datetime(2012, 6, 30),
]
def is_2012(arg):
return dates.arg = 2012
1 Answer
Chris Freeman
Treehouse Moderator 68,441 PointsThe argument will be a datetime
object that has a year
attribute:
is_2012(arg):
return arg.year == 2012