Check sibling questions

To open a file c:\scores.txt for reading, we use

 

Answer:

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

file_object= open(file_name, access_mode) 

Here, 

  • the file_name will be c:\\scores.txt
  • The file should be opened for reading ,  so access_mode is “r” .

Therefore, the correct answer will be

infile = open(“c:\\scores.txt”, “r”)

 

So, the correct answer is (b). 

  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