Complete the following code to update a record in a file opened with following code:
import pickle
fin=open('Stu.dat','rb+')
try:
while True:
_________=fin.tell()
stu=pickle.load(fin)
if stu['Marks'] in [92,93,94]:
stu['Marks']+=3
fin._____
pickle._____
except:
...
Answers
Answered by
2
Answer:
I DON'T UNDERSTAND YOUR QUESTION SORRY
Similar questions