मराठी

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

प्रश्न

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.

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 7. | पृष्ठ ३८
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×