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 trialMogamat Nazeer Slarmie
Courses Plus Student 245 PointsI keep getting error that task 1 is no longer passing
Task 3 does not allow me to check work.
available = "banana split;hot fudge;cherry;malted;black and white"
sundaes = available.split(';')
menu = "Our available flavors are: {}.".format(display_menu)
display_menu = sundaes.join(", ")
2 Answers
Unsubscribed User
6,415 PointsHello,
You're pretty close here, but there's two errors in your code. Firstly, you try to use the display_menu variable on Line 3 before that display_menu variable is defined on Line 4. Also, you have your join elements reversed. The following code demonstrates one of the correct ways you can go about this challenge:
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)
If you wanted to do it all on one line as the challenge suggests you try, it would be the following:
available = "banana split;hot fudge;cherry;malted;black and white"
sundaes = available.split(';')
menu = "Our available flavors are: {}.".format(", ".join(sundaes))
Hope this helps...
Carla Kabamba
688 PointsI also have this problem!