Advertisements
Advertisements
प्रश्न
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”
उत्तर
Assumed this statement, as stated in question -
filehandle = open("hello.txt","a")
commands to write following lines are -
1 file_handle = open("hello.txt", "a")
2 file_handle.write("Welcome my class")
3 file_handle.write("It is a fun place")
4 file_handle.write("you will learn and play")
5 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 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”
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.