Advertisements
Advertisements
Question
Write a user defined function in Python named showInLines()
which reads contents of a text file named STORY.TXT
and displays every sentence in a separate line.
Assume that a sentence ends with a full stop (.), a question mark (?), or an exclamation mark (!).
For example, if the content of file STORY.TXT
is as follows:
Our parents told us that we must eat vegetables to be healthy. And it turns out, our parents were right! So, what else did our parents tell?
Then the function should display the file's content as follows:
Our parents told us that we must eat vegetables to be healthy.
And it turns out, our parents were right! So, what else did our parents tell?
Code Writing
Solution
def showInLines():
f=open("STORY.TXT")
sentence=""
filetext=f.read()
for ch in filetext:
if ch not in"?.!":
sentence += ch
else:
print(sentence)
sentence =""
print("NewLine:")
shaalaa.com
Is there an error in this question or solution?