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 trialAmol Garg
1,558 PointsWhy did Kenneth set first_name = none and last_name=none in the unpacker() function?
Why did Kenneth set first_name = none and last_name=none in the unpacker() function? What would have happened if he hadn't?
Tyler Wells
Python Development Techdegree Student 2,678 PointsHi Dave, I actually played with the code a bunch and answered my own question. Sorry for the trouble and thanks for the help
1 Answer
Dave StSomeWhere
19,870 PointsIt is setting a default argument value. By setting a function argument to None you can then do the truthy check to see if a value has been passed. Also, the function won't blow up if the argument is not passed and you can handle the situation gracefully within the function.
Does that answer your question?
Amol Garg
1,558 PointsYup that answers it.. Thanks!
Tyler Wells
Python Development Techdegree Student 2,678 PointsHi Dave, so if he hadn't set the default argument values, and the dictionary he was unpacking didn't have the key first_name, would it then not allow us to do the truthy check? Thanks for the help
Dave StSomeWhere
19,870 PointsDave StSomeWhere
19,870 PointsHi Tyler, I'm not completely clear on your question - could you please put it into a code example and hopefully we can work it out. This was back in May so, I'm a little fuzzy on the details.