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 trialAkshaan Mazumdar
3,787 Pointswhy is 1 being printed in this example ? the length of name = "Kenneth" is 1?
def packing(**kwargs): ... print(len(kwargs)) packing(name="Kenneth") 1
1 Answer
Stuart Wright
41,120 PointsThe length is one because you have passed one keyword argument. If you write:
packing(name="Kenneth", age=10)
The length will be two. The actual length of the individual elements isn't considered. Change the body of the function to:
print(kwargs)
And you'll see a dictionary is printed containing the keyword arguments. It is this dictionary you're currently printing the length of.
Akshaan Mazumdar
3,787 PointsAkshaan Mazumdar
3,787 PointsThanks. Do u have any extra material to study kwargs and packing/unpacking further??
Stuart Wright
41,120 PointsStuart Wright
41,120 PointsThe official documentation is a good place to start - it has quite a few examples:
https://docs.python.org/3.6/tutorial/controlflow.html#keyword-arguments