Jak wyodrębnić słowa ze sznurka w Pythonie

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