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 trialKristian Woods
23,414 PointsAlright, let's finish making our menu. Combine the sundaes list into a new variable named display_menu, where each item
Where am I going wrong here?
available = "banana split;hot fudge;cherry;malted;black and white"
sundaes = available.split(';') # breaks list after each ';'
display_menu = sundaes.join(', ') # stores ammeded list to sundaes variable and uses the join method to add a comma and space to each item in list
menu = "Our available flavors are: {}.".format(display_menu) # fills placesholder with newly created string (display_menu)
1 Answer
ghaith omar
16,395 PointsHi The wrong is the use of .join, it must be like this:
(', ').join(sundaes)
you must always start of the method you want to join the string with, and inside join() you must put the list that you want to convert.
menu = "Our available flavors are: {}.".format((", ").join(sundaes))
this must work.