Computer Science, asked by anshulnagrath, 7 months ago

write a python programme to read a text line by line and each word seperayed by #​

Answers

Answered by srpappi143
1

word = input( )

for '#' in word:

X=list ( word.split)

print(X)

Similar questions