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 trialJulian Garcia
18,380 PointsIn this challenge gives an error: Bummer! Did you use `.join(", ")`? but I think it is: new = ",".join(sundaes)
I run in computer command line and I think the result is ok.
available = "banana split;hot fudge;cherry;malted;black and white" sundaes = available.split(";") menu = "Our available flavors are: {}." new = ",".join(sundaes) menu = menu.format(new) menu 'Our available flavors are: banana split,hot fudge,cherry,malted,black and white.'
What the error in challenge.
available = "banana split;hot fudge;cherry;malted;black and white"
sundaes=available.split(";")
menu = "Our available flavors are: {}."
new = ",".join(sundaes)
menu = menu.format(new)
2 Answers
Steven Parker
231,248 PointsThe challenge asked you to join sundaes with a comma and a space. It looks like you forgot the space.
Also, while it's not necessary to pass, you can combine the join and the format like this:
menu = menu.format(", ".join(sundaes))
Julian Garcia
18,380 PointsThanks Steven, that solved the problem.