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 Introducing Lists Build an Application Multidimensional Musical Groups

using the .join method

For the challenge Im suppose to loop through the different lists. and join them with a ,. Im trying to join the lists but im failing to see what Im missing. code is for groups in musical_groups: print (",".join(groups))

help is appreciated

1 Answer

Cooper Runstein
Cooper Runstein
11,850 Points

You're missing a space in the string. I would also recommend using group without an s to add some clarity to your code, but that won't change the solution. Adding an extra space should do the trick.

for group in musical_groups:
   print( ", ".join(group) )