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

Learn in your speed, with individual attention - Teachoo Maths 1-on-1 Class

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 13 years. He provides courses for Maths, Science, Social Science, Physics, Chemistry, Computer Science at Teachoo.