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 trialBrian Bimschleger
1,659 PointsStep 3 informing me that Task 1 no longer valid?
After successfully completing Task 1 (split the variable "available" at semi-colons) and Task 2 (define variable "menu"), I arrive at Task 3. However, whenever I attempting to run Task 3, it informs me that Task 1 no longer works.
New code that I have added does not affect anything that was completed in Task 1.
My expected result is "Our available flavors are: banana split, hot fudge, cherry, malted, black and white."
print("Please help!")
available = "banana split;hot fudge;cherry;malted;black and white"
sundaes = available.split(";")
menu = "Our available flavors are: {}."
display_menu = sundaes.join(", ")
menu = menu.format(display_menu)
1 Answer
Steven Parker
231,248 PointsIt looks like you have some arguments transposed.
In Python, join is a string method that takes a sequence argument. But you have applied join to a sequence, and gave it a string argument.
The error message about "task 1 not passing" is simply because task 1 is retested first, and a syntax error anywhere in the code affects all the tests.
Brian Bimschleger
1,659 PointsBrian Bimschleger
1,659 PointsGotcha. Basically needed the below instead. Thanks for the help!
format(", ".join(sundaes))
Steven Parker
231,248 PointsSteven Parker
231,248 PointsExactly! Good job