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

Siyuan Welch
Siyuan Welch
3,025 Points

Combine the sundaes list into a new string, joining them with a comma and a space

I have no idea how to fix it.

3 Answers

Chris Freeman
MOD
Chris Freeman
Treehouse Moderator 68,426 Points

You can join a list using:

', '.join(some_list)

This will return a string which may be assign to a variable, printed, or returned from a function as needed.

Siyuan Welch
Siyuan Welch
3,025 Points

TASK: Alright, let's finish making our menu. Combine the sundaes list into a new string, joining them with a comma and a space (", "). Use that string with a .format() on our existing menu variable and replace the current value of menu.

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

Chris Freeman
Chris Freeman
Treehouse Moderator 68,426 Points

Try this:

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

Yeah, it's went through. Thank you so much!

It you want to complete in one line try this

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