Computer Science, asked by janvibh5244, 5 months ago

)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 sanjiththesupernigha
0

Answer:

The code itself is wrong

Explanation:

Similar questions