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 Splitting and Joining

Is there a better way to show me how .split and .join works ? I.m looking for more examples

I understand how the the process works but I'm looking for more examples on how the code is used

1 Answer

Steven Parker
Steven Parker
230,995 Points

Here's a simple example

I found the main trick was to remember that split is a list method that takes a string as an argument, and join is a string method that takes a sequence (list) as an argument.

food = "apples:oranges:lemons:kumquats"
foodlist = food.split(":")     # split into a list separating on colons
# foodlist now has: ['apples', 'oranges', 'lemons', 'kumquats']
foodcsv = ", ".join(foodlist)  # rejoin the list using comma and space to separate
# foodcsv now has: 'apples, oranges, lemons, kumquats'