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 (Retired) Tuples Two-ples

i just don't know about this one does it have something to do with the ** astrixs for unpacking?

string.format(**my_dictionary)?

2 Answers

It does indeed. Unpacking a tuple requires one less asterisk.

my_tupple = ('tom', 'pizza'), ('julia', 'carrots'), ('tim', 'mushrooms') # so I created a tupple of tupples string = " hi im {} and I love to eat {}"

for i in my_tupple: string.format(*i)

"hi im tom and I love to eat pizza" 'hi im julia and I love to eat carrots" "hi im tim and I love to eat mushrooms"

ha it works!