write a python programme to read a text line by line and each word seperayed by #
Answers
Answered by
1
word = input( )
for '#' in word:
X=list ( word.split)
print(X)
Similar questions