हिंदी

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

प्रश्न

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.

टिप्पणी लिखिए

उत्तर

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
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
अध्याय 2: File Handling in Python - Exercise [पृष्ठ ३८]

APPEARS IN

एनसीईआरटी Computer Science [English] Class 12
अध्याय 2 File Handling in Python
Exercise | Q 8. | पृष्ठ ३८
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×