Advertisements
Advertisements
प्रश्न
Write the missing statement to complete the following code:
file = open("example.txt", "r")
data = file.read(100)
____________ #Move the file pointer to the
beginning of the file
next_data = file.read(50)
file.close()
कोड लेखन
रिक्त स्थान भरें
उत्तर
file = open("example.txt", "r")
data = file.read(100)
file.seek(0) #Move the file pointer to the
beginning of the file
next_data = file.read(50)
file.close()
shaalaa.com
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?