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

Updated Version of this question. How do I combine these items and how do I use the new Variable?

I am Lost on what to do with the new variable as well as what to do with menu. Can someone help me? What is this code supposed to be and please explain why.

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

1 Answer

bryonlarrance
bryonlarrance
16,414 Points

Everything is good up to your last line.

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

On menu you should use the .format and inside of that .format you are rejoining your list that you made in the earlier .split call.

The task asks you to join the items back with a ', ' --a comma and a space--, so the ', '.join(sundaes) joins the names back into a list with comma separation. i.e. banana split, hot fudge, cherry, malted, black and white

Hope that helps.