

InterviewSolution
Saved Bookmarks
1. |
Correct syntax of file.readlines() is?(a) fileObject.readlines( sizehint );(b) fileObject.readlines();(c) fileObject.readlines(sequence)(d) none of the mentionedI got this question by my school principal while I was bunking the class.I want to ask this question from Files in division Regular Expressions and Files of Python |
Answer» The correct answer is (a) fileObject.READLINES( sizehint ); |
|