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 trialRyan Dyke
Full Stack JavaScript Techdegree Student 6,630 PointsHarder Time Machine - can you pass strings to timedelta?
Instead of making 4 if statements, I'd like to pass time_str ("days", "hours", or "minutes") directly into the timedelta method. Is this possible, or are the quotation marks holding me back form doing so?
import datetime
starter = datetime.datetime(2015, 10, 21, 16, 29)
def time_machine(time_int, time_str):
if time_str == "years":
time_int = time_int * 365
time_str = "days"
finisher = starter + datetime.timedelta(time_str=time_int)
else:
finisher = starter + datetime.timedelta(time_str=time_int)
2 Answers
Steven Parker
231,236 PointsIt looks like you forgot to return the result value!
And the keys in the "key=value" syntax can't be variables, but you can do a little trick with a dictionary literal and the unpacking operator:
def time_machine(time_int, time_str):
if time_str == "years":
time_int *= 365
time_str = "days"
return starter + datetime.timedelta(**{time_str : time_int})
Jonathan Gonzalez
8,544 PointsHey boi,
Chris Freeman explained it really good here: https://teamtreehouse.com/community/why-wont-the-timedelta-function-take-a-variable-as-a-keyword
I think what happens is python takes the variables passed into the function and places them in the dictionary
datetime.timedelta(**{5 : "days"})
then when it runs, it unpacks the dictionary into the key/value pair which timedelta likes
time_machine(5, "days") ------> (datetime.timedelta(day=5)
not 100% so if that's off let me know
boi
14,242 PointsHey Jonathan,
YES, you're correct, it's the **
that makes it into keyword arguments. I cleared my doubt already by Kenneth's explanation here. Chris Freeman's explanation was more detailed. Thank you for the help, Jonathan 👍🙂
boi
14,242 Pointsboi
14,242 PointsSteven, you genius son of a programmer. Hold my upvote. What took me 13 lines of code, you got it in 5.
boi
14,242 Pointsboi
14,242 PointsSteven, I can't figure out the core building block of your
(**{time_str : time_int})
, I can't seem to wrap my head around this concept.Aren't we passing in
"string"
?. how did you manage to convert"string"
intovariable
? I still don't quite get that last line of code, could you please break that up for me, so I could see how it works.return starter + datetime.timedelta(**{time_str : time_int}) #Please explain the working
Would appreciate your help, GREATLY.