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 trialJillian Hade
1,170 PointsKeeps saying Task 1 is no longer functioning
I followed the directions and it keeps sending me back to the first task.
available = "banana split;hot fudge;cherry;malted;black and white"
sundaes = available.split(';')
display_menu = sundaes.join(', ')
menu = 'Our available flavors are: {}.'.format(display_menu)
3 Answers
Peter Ndungu
1,395 PointsTry this:
available = "banana split;hot fudge;cherry;malted;black and white"
sundaes = available.split(';')
menu = 'Our available flavors are: {}.'.format(', '.join(sundaes))
Feisty Mullah
25,849 PointsHello Jillian, You can do all this in one line of code as asked by the challenge. It is just little bit confusing.
available = "banana split;hot fudge;cherry;malted;black and white" sundaes = available.split(';') menu = "Our available flavors are:{}".format(", ".join(sundaes))
Afloarei Andrei
5,163 Pointstry: display_menu = ", ".join(sundaes)
Peter Ndungu
1,395 PointsPeter Ndungu
1,395 PointsHello, Try not to delete the code for task 1. When in task 2 just add the correct code immediately after the the task 1 code.