)Write output : (2)
f = open("a.txt", 'w')
line = 'Welcome to python programming '
f.write(line)
f.close()
f = open("a.txt", 'rb+')
print(f.tell())
print(f.read(7))
print(f.tell())
print(f.read())
print(f.tell())
f.seek(9,0)
print(f.read(5))
Answers
Answered by
0
Answer:
The code itself is wrong
Explanation:
Similar questions