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

Keeps saying Task 1 is no longer functioning

I followed the directions and it keeps sending me back to the first task.

banana.py
available = "banana split;hot fudge;cherry;malted;black and white"

sundaes = available.split(';')

display_menu = sundaes.join(', ')

menu = 'Our available flavors are: {}.'.format(display_menu)
Peter Ndungu
Peter Ndungu
1,395 Points

Hello, Try not to delete the code for task 1. When in task 2 just add the correct code immediately after the the task 1 code.

3 Answers

Peter Ndungu
Peter Ndungu
1,395 Points

Try this:

available = "banana split;hot fudge;cherry;malted;black and white"

sundaes = available.split(';')

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

Feisty Mullah
Feisty Mullah
25,849 Points

Hello Jillian, You can do all this in one line of code as asked by the challenge. It is just little bit confusing.

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

Afloarei Andrei
Afloarei Andrei
5,163 Points

try: display_menu = ", ".join(sundaes)