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’)

Ask a doubt
Davneet Singh's photo - Co-founder, Teachoo

Made by

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, Social Science, Physics, Chemistry, Computer Science at Teachoo.