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()

I'm not sure why my code isn't working. I get to the last step and it tells me that Task 1 is no longer passing.

I didn't change any part of task 1 but when I try to join sundaes it gives me that error.

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

1 Answer

Umesh Ravji
Umesh Ravji
42,386 Points

Hi Ethan, if you ever encounter a task is no longer working issue, it generally means something is preventing your code from running properly.. such as a syntax issue.

display_menu = sundaes.join(", ")

You are not able to call the join method on a list because lists don't have a join method.

display_menu = ". ".join(sundaes)

That is what you are looking for.

You also have to re assign the result to menu too.

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)

Thanks Umesh! Me and my friend were really stuck on this.