python split string into lists code example
Example 1: python split list
string = 'this is a python string'
wordList = string.split(' ')
Example 2: python string to list without split
sentence = 'This is a sentence'
split_value = []
tmp = ''
for c in sentence:
if c == ' ':
split_value.append(tmp)
tmp = ''
else:
tmp += c
if tmp:
split_value.append(tmp)