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

help

do not know why this dose not work

jag
jag
18,266 Points

Showing your code will be helpful to help you.

Hi! I'm more than happy to help you out. What do you need help with specifically? I see there are 3 separate tasks to this challenge.

Chris Freeman
Chris Freeman
Treehouse Moderator 68,423 Points

Hi Feng Ji, The checkbox to automatically add your code to a post is not working correctly. Please add your code manually. Thanks!

2 Answers

Chris Freeman
MOD
Chris Freeman
Treehouse Moderator 68,423 Points
# Task 3 of 3

# Alright, let's finish making our menu.

# Combine the 'sundaes' list into a new string, joining them with a
# comma and a space (", ").

# Put that string into a .format() on our 'menu' string.

menu = "Our available flavors are: {}.".format(", ".join(sundaes))

## or ##

menu = menu.format(", ".join(sundaes))

THX A LOOOOT!

The right answer for question 3