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 trialBENJAMIN Johnson
Courses Plus Student 1,806 Pointshow do you specify the number of times to split using the .split()?function
splitting
1 Answer
Jon Mirow
9,864 PointsHi there.
To only split a certain number of times, .split takes a second argument, maxsplit:
string = "This is a python program"
string_split = string.split(" ", 2)
#['This', 'is', 'a python program']
Don't forget that as it's the second argument, if you don't specify a deliminator, you have to:
string = "This is a python program"
string_split = string.split(maxsplit = 2)
#['This', 'is', 'a python program']
Hope it helps