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 Python Collections (2016, retired 2019) Dictionaries Packing and Unpacking Dictionaries

What is the purpose of ** in the unpacker function?

I was able to accomplish the task I just want to understand it better.

1 Answer

Steven Parker
Steven Parker
229,732 Points

They call that the "splat" operator.

When you use it on a dictionary that you are passing as an argument to a function, it takes each keyword/value pair of the dictionary and passes it as a separate argument. So it makes it like you passed the contents of the dictionary instead of the dictionary itself.

Thanks!