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 trialRo Joshi
Courses Plus Student 836 PointsWhy is not this code working
I have watched your video numerous times but can't figure out why this code is not working.
available = "banana split;hot fudge;cherry;malted;black and white"
sundaes = available.split(';')
menu="Our available flavors are: {}."
display_menu = menu.format("banana split;hot fudge;cherry;malted;black and white".join(", "))
3 Answers
aaronbuckles
3,291 PointsYou never used the sundaes
list. On line 4, instead of doing display_menu = menu.format("banana split;hot fudge;cherry;malted;black and white".join(", "))
, do display_menu = menu.format(", ".join(sundaes))
. Hope this helped!
Ro Joshi
Courses Plus Student 836 PointsI tried and it didn't work but thanks Aaron!. Will you try again and show me the proper code
aaronbuckles
3,291 PointsI just tried it in my console. So it should work.
available = "banana split;hot fudge;cherry;malted;black and white"
sundaes = available.split(';')
menu = "Our available flavors are: {}."
menu = menu.format(", ".join(sundaes))
The output I get is: 'Our available flavors are: banana split, hot fudge, cherry, malted, black and white.'
The problem is you used a display_menu
variable when the task was looking for menu.