Advertisements
Advertisements
Question
Consider the following Python statement:
F=open('CONTENT.TXT')
Which of the following is an invalid statement in Python?
Options
F.seek(1, 0)
F.seek(0, 1)
F.seek(0, −1)
F.seek(0, 2)
MCQ
Solution
F.seek(0, −1)
Explanation:
F.seek(0, 1) indicates that the reference parameter is 1.
- 0: establishes the file's starting reference point.
- 1: establishes the current file position as the reference point.
- 2: establishes the file's reference point at the end.
shaalaa.com
Is there an error in this question or solution?