f = open('/tmp/workfile', 'r+')f.write('0123456789abcdef')f.seek(5) # Go to the 6th byte in the fileprint f.read(1) f.seek(-3, 2) # Go to the 3rd byte before the endprint f.read(1)f.close()
Name (required)
email (will not be published) (required)
Website