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 trialcastro micheal
Data Analysis Techdegree Student 645 Pointsyou know 3 members. So can you please only print out the trios
musical_groups = [ ["Ad Rock", "MCA", "Mike D."], ["John Lennon", "Paul McCartney", "Ringo Starr", "George Harrison"], ["Salt", "Peppa", "Spinderella"], ["Rivers Cuomo", "Patrick Wilson", "Brian Bell", "Scott Shriner"], ["Chuck D.", "Flavor Flav", "Professor Griff", "Khari Winn", "DJ Lord"], ["Axl Rose", "Slash", "Duff McKagan", "Steven Adler"], ["Run", "DMC", "Jam Master Jay"], ]
Your code here
for music in musical_groups: print(", ".join(music))
for music in musical_groups: if len(music) == 3: print(", ".join(music))
That is my code please is this correct ???
2 Answers
Steven Parker
232,149 PointsIf I remember this challenge correctly, one step has you create a loop to print out the whole list, and then the next step asks you to modify the code to print out only the trios (so you would still only have one loop).
But this code has two loops, one will print the whole list, and the other will print the trios again.
castro micheal
Data Analysis Techdegree Student 645 Pointsi have modified my code but i still get AssertionError please help
musical_groups = [ ["Ad Rock", "MCA", "Mike D."], ["John Lennon", "Paul McCartney", "Ringo Starr", "George Harrison"], ["Salt", "Peppa", "Spinderella"], ["Rivers Cuomo", "Patrick Wilson", "Brian Bell", "Scott Shriner"], ["Chuck D.", "Flavor Flav", "Professor Griff", "Khari Winn", "DJ Lord"], ["Axl Rose", "Slash", "Duff McKagan", "Steven Adler"], ["Run", "DMC", "Jam Master Jay"], ]
Your code here
for music in musical_groups: if len(music) == 2: print(", ".join(music))
Steven Parker
232,149 PointsSteven Parker
232,149 PointsFor future questions, take a look at these videos about Posting a Question, using Markdown formatting to preserve the code's appearance, and this one about sharing a snapshot of your workspace.