Comment extraire les mots de String in 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)