wie man Wörter aus String in Python extrahiert

string = "This is demo string"
words = string.split()
for word in words:
  print(word)
Amu