

InterviewSolution
Saved Bookmarks
1. |
Which of the following is not a valid attribute of a file object (fp)?(a) fp.name(b) fp.closed(c) fp.mode(d) fp.sizeI had been asked this question during an interview for a job.I would like to ask this question from Files in section Regular Expressions and Files of Python |
Answer» CORRECT ANSWER is (d) fp.size Easiest EXPLANATION - fp.size has not been IMPLEMENTED. |
|