cara mengekstrak kata -kata dari string dalam python

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