Run »
×
Change Orientation
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']
×
Report a Problem:
Your E-mail:
Page address:
Description:
Submit