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 trialsalem desir
1,394 PointsI dont understand this question
Please explain
available = "banana split;hot fudge;cherry;malted;black and white"
sundaes = available.split(';')
menu = "Our available flavors are {}".format(.join(display_menu))
display_menu = sundaes.join(",")
1 Answer
Christian Mangeng
15,970 PointsHi Salem,
I spotted two mistakes in your code:
1) The join() method actually works the other way around: you define the elements with which you separate the string elments (of the sundaes list) at the beginning, and the name of the list for which you do that at the end, like this:
display_menu = ", ".join(sundaes)
2) You do not have to use join() again afterwards, as display_menu then already contains the correctly formatted string. You can just format the menu variable with display_menu (add the following code as a new command, otherwise the previous tasks will no longer pass):
menu = "Our available flavors are {}.".format(display_menu)
or (more elegantly) like this:
menu = menu.format(display_menu)
So in the end it looks like this:
available = "banana split;hot fudge;cherry;malted;black and white"
sundaes = available.split(";")
menu = "Our available flavors are: {}."
display_menu = ", ".join(sundaes)
menu = menu.format(display_menu)
salem desir
1,394 Pointssalem desir
1,394 PointsThank you