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 trialIdan shami
13,251 Pointsuse split() and join() challenge task 2 of 3 python
I run the code of the task on the task but when I check my work it tells me "oops! it looks like Task 1 is no longer passing", but when I use the python shell everything works fine...
Do I have a wrong answer or this specific Task have a problem?
I look forward to the answer, Thanks a lot!
Idan.
available = "banana split;hot fudge;cherry;malted;black and white"
sundeas = available.split(';')
menu = "Our available flavors are: {}. ".format(", ".join(sundeas))
2 Answers
Rafael Ferreira
2,281 Pointshey there!
while the code is correct, looks like the misspelling of sundaes is causing the error. fixing the spelling should allow you to complete the task.
hope that helps. let me know how it goes.
Idan shami
13,251 Points^.^ my bad, thanks a lot.
ds1
7,627 Pointsds1
7,627 PointsHi, Idan- I think Rafael is right!