Advertisements
Advertisements
प्रश्न
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”
उत्तर
Python program to open the file hello.txt in read mode to display its contents:
file = open("hello.text", "r")
print(file.read())
Output:
Welcome my class
It is a fun place
You will learn and play
When it comes to file handling, there are two ways to open a file in order to insert data:
- 'w' open file in write mode.
- 'a' open file in append mode.
Write mode 'w' erase the previous data of the file and insert new data while append mode don't erase previous data, it append new data with previous one.
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 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.