how to split a string without delimiter in python code example
Example: Splitting strings in Python without split()
sentence = 'This is a sentence'
word=""
for w in sentence :
if w.isalpha():
word=word+w
elif not w.isalpha():
print(word)
word=""
print(word)