Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to extract words from string in python

string = "This is demo string"
words = string.split()
for word in words:
  print(word)
 
PREVIOUS NEXT
Tagged: #extract #words #string #python
ADD COMMENT
Topic
Name
4+5 =