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

Anders Axelsen
Anders Axelsen
3,471 Points

In task 3/3, I can't succeed in: display_menu = available.join(", "). Why?

Title says it.

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

1 Answer

Jennifer Nordell
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

Hi there! There are a few things going on here. First, it's the sundaes that should be joined with a comma and assigned to display_menu. Secondly, display_menu needs to be defined before menu as we're going to use that to format the menu. Your menu is missing the .format entirely.

I hope this helps, but let me know if you're still stuck! :sparkles:

Anders Axelsen
Anders Axelsen
3,471 Points

Thanks for helping.

I found this to work: menu = "Our available flavors are: {}.".format(", ".join(sundaes))