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 trialKeith McDonald
816 Pointsusing 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
11,850 PointsYou'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) )