How to read and write to the same text file in Python

1 Answer

0 votes
fh = open('d:test.txt', 'w+')
fh.write('python programming is fun')

print("a: ", fh.tell())
fh.seek(2)
print("b: ", fh.tell())
print(fh.read(4))
print("c: ", fh.tell())

fh.seek(6)
fh.write('WWW')

fh.seek(0)
all_content = fh.read()
print(all_content)


'''
run:

a:  25
b:  2
thon
c:  6
pythonWWWogramming is fun

'''

 



answered Dec 21, 2017 by avibootz

Related questions

1 answer 137 views
1 answer 153 views
1 answer 242 views
...