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()
APPEARS IN
संबंधित प्रश्न
Which Python module has functions defined for handling files?
File handle is a ______.
Which attribute informs information about how a file was opened?
The file offset position for <r> is the ______.
In which of the file open mode, the new content will be overwritten on the old content?
Which is the correct syntax for closing a file using Python?
Write the use and syntax for the following method:
open()
Write a command(s) to write the following lines to the text file named hello.txt. Assume that the file is opened in append mode.
“ Welcome my class”
“It is a fun place”
“You will learn and play”
Write a Python program to open the file hello.txt used below in read mode to display its contents. What will be the difference if the file was opened in write mode instead of append mode?
“ Welcome my class”
“It is a fun place”
“You will learn and play”