Advertisements
Advertisements
प्रश्न
Consider the following Python statement:
F=open('CONTENT.TXT')
Which of the following is an invalid statement in Python?
विकल्प
F.seek(1, 0)
F.seek(0, 1)
F.seek(0, −1)
F.seek(0, 2)
MCQ
उत्तर
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
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?