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 trialJamie Parry
312 PointsI AM COMPLETELY STUCK
I dont know what I am doing wrong
available = "banana split;hot fudge;cherry;malted;black and white"
sundaes = available.split(";")
menu = "Our available flavors are: {}"
display_menu = sundaes(", ").join()
display_menu.format(menu)
1 Answer
Alexander Davison
65,469 PointsYou are so close!
Just note: the challenge wants you to eventually modify the original menu
variable in place. It tells you to make a variable display_menu
as an intermediate step, but it isn't required. Though I like a variable flavors
as an intermediate step instead, since it is readable:
flavors = ", ".join(sundaes)
menu = menu.format(flavors)
(Replace your last two lines with these lines, and your code should pass.)
Happy coding! ~Alex