English

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? - Computer Science (Python)

Advertisements
Advertisements

Question

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”

Short Note

Solution

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.

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 7. | Page 38
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×