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 trialAnders Axelsen
3,471 PointsIn task 3/3, I can't succeed in: display_menu = available.join(", "). Why?
Title says it.
available = "banana split;hot fudge;cherry;malted;black and white"
sundaes = available.split(";")
menu = "Our available flavors are: {}."
display_menu = available.join(", ")
1 Answer
Jennifer Nordell
Treehouse TeacherHi there! There are a few things going on here. First, it's the sundaes
that should be joined with a comma and assigned to display_menu
. Secondly, display_menu needs to be defined before menu
as we're going to use that to format the menu
. Your menu is missing the .format
entirely.
I hope this helps, but let me know if you're still stuck!
Anders Axelsen
3,471 PointsAnders Axelsen
3,471 PointsThanks for helping.
I found this to work:
menu = "Our available flavors are: {}.".format(", ".join(sundaes))