Como extrair palavras da string em python
string = "This is demo string"
words = string.split()
for word in words:
print(word)
Amu
string = "This is demo string"
words = string.split()
for word in words:
print(word)