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

Jason Neff
Jason Neff
616 Points

I can't figure out why my code isn't working for this challenge...

Whenever I get to step 3, it kicks back that step 2 is no longer passing. Note that I am trying to do the method that combines all the needed code in one line for step 3.

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

2 Answers

Christopher Shaw
seal-mask
PLUS
.a{fill-rule:evenodd;}techdegree seal-36
Christopher Shaw
Python Web Development Techdegree Graduate 58,248 Points

The instructions for step 2 are: Make a new variable named menu that's set to "Our available flavors are: {}.".

In step 3, you no longer have the variable named menu. You must keep this variabiale.

Jason Neff
Jason Neff
616 Points

Thanks Christopher! Makes sense...it's giving me the error because I tried to change that line's variable name to display_menu. Appreciate the help! J