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

Henry Moreno
Henry Moreno
1,086 Points

Working ? or not

my banana.py

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

On my Python 3.65 I run this just fine print(display_name)

print(display_menu) Our available flavors are: banana split, hot fudge, cherry, malted, black and white .

I have been working on this problem for over an hour??? Error message says I never reassigned menu to display_menu ????

2 Answers

Steven Parker
Steven Parker
230,995 Points

You are sooo close! You just need one more thing: "Then reassign the menu variable ...".

So just put the final string back into "menu" and you'll have it!

You could even just change "display_menu" to "menu". Ken even suggested: "If you're really brave, you can even accomplish this all on the same line where menu is currently being set."

Henry Moreno
Henry Moreno
1,086 Points

Great answer...finally when it was quiet .. I figured it out.. ..yes you are right almost there Thanks a ton Henry