Splitting strings : String Split « String « Python






Splitting strings

Splitting strings

string1 = "A, B, C, D, E, F"

print "String is:", string1
print "Split string by spaces:", string1.split()
print "Split string by commas:", string1.split( "," )
print "Split string by commas, max 2:", string1.split( ",", 2 )
print


           
       








Related examples in the same category

1.A sentence is split up into a list of wordsA sentence is split up into a list of words
2.Split a string by ','Split a string by ','
3.String splits by another string String splits by another string