Check sibling questions

Write a statement in Python to perform the following operations:

 

Answer:

The syntax to open a file in python is as follows:

file_object= open(file_name, access_mode) 

Therefore,

  • To open a text file ''MYPET.TXT'' in write mode:

f1=open(''MYPET.TXT'',’w’)

  • To open a text file ''MYPET.TXT'' in read mode:

f1=open(''MYPET.TXT'',’r’)

  1. Computer Science - Class 12
  2. Chapter 2 - File Handling in Python

About the Author

Davneet Singh

Davneet Singh has done his B.Tech from Indian Institute of Technology, Kanpur. He has been teaching from the past 14 years. He provides courses for Maths, Science and Computer Science at Teachoo