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 trial

Python Python Basics (2015) Python Data Types Use .split() and .join()

Nikhil Alexander
Nikhil Alexander
1,444 Points

task 1 is no longer passing after i just followed plain instructions from task 2.... how can i correct this error?

after typing menu = "Our available flavors are: {}". the first task which is sundaes = available.split(';') i may be making a simple error which i am not able to locate please help me find this error

banana.py
available = "banana split;hot fudge;cherry;malted;black and white"
sundaes = available.split(';')
menu = "Our available flavors are: {}.".

1 Answer

Aaron Loften
Aaron Loften
12,464 Points

If I had to guess, because I just did that test just now and passed with a similar anaswer....

I'd have to say that the period on the outside of your string is causing an "unknown error" which will sometimes default to "Task 1 is no longer passing" on teamtreehouse.

It looks like you might have copy and pasted it from the instructions so you grabbed the period on accident.

My passing code...

available = "banana split;hot fudge;cherry;malted;black and white"
sundaes = available.split(";")
menu = "Our available flavors are: {}."
Nikhil Alexander
Nikhil Alexander
1,444 Points

thank you for the immediate response and i really appreciate your help. the code works.