Source Code:
(back to article)
string = "Hallo Welt! Wie geht es dir?" words = string.split("!") print(words)
Result:
Report an issue