English

Write a program to accept string/sentences from the user till the user enters “END” to. Save the data in a text file and then display only those sentences which begin with an uppercase alphabet. - Computer Science (Python)

Advertisements
Advertisements

Question

Write a program to accept string/sentences from the user till the user enters “END” to. Save the data in a text file and then display only those sentences which begin with an uppercase alphabet.

Short Note

Solution

Writing string/sentences in a text file "new.txt"

file_handle = open("new.txt", "w")
line = ""
while line!= 'END':
line = input("Enter a sentence (END to exit": ")
file_handle.write(line + "\n")
file_handle.close()

Reading string/sentences from a text file "new.txt", which starts with capital alphabet.

file_handle = open("new.txt", "r")
line = ""
while line:
line = file_handle.readline()
if line:
if line[0].isupper():
print(line)
file_handle.close()
shaalaa.com
Opening and Closing a Text Files
  Is there an error in this question or solution?
Chapter 2: File Handling in Python - Exercise [Page 38]

APPEARS IN

NCERT Computer Science [English] Class 12
Chapter 2 File Handling in Python
Exercise | Q 8. | Page 38
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×