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 trialHenry Moreno
1,086 PointsWorking ? or not
my banana.py
available = "banana split;hot fudge;cherry;malted;black and white" sundaes = available.split(';') menu = "Our available flavors are: {} ." display_menu = menu .format(", ".join(sundaes))
On my Python 3.65 I run this just fine print(display_name)
print(display_menu) Our available flavors are: banana split, hot fudge, cherry, malted, black and white .
I have been working on this problem for over an hour??? Error message says I never reassigned menu to display_menu ????
2 Answers
Steven Parker
231,236 PointsYou are sooo close! You just need one more thing: "Then reassign the menu variable ...".
So just put the final string back into "menu" and you'll have it!
You could even just change "display_menu" to "menu". Ken even suggested: "If you're really brave, you can even accomplish this all on the same line where menu is currently being set."
Henry Moreno
1,086 PointsGreat answer...finally when it was quiet .. I figured it out.. ..yes you are right almost there Thanks a ton Henry