Source Code:
(back to article)
string = "This is an example string." word_list = string.split() print(word_list)
Result:
Report an issue