Get your own Python server Result Size: 625 x 565
x
 
import re
#Split the string at every white-space character:
txt = "The rain in Spain"
x = re.split("\s", txt)
print(x)
['The', 'rain', 'in', 'Spain']