Python Forum
Strange write()/File behavior
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Strange write()/File behavior
#1
Hello everyone,
I ran into some strange behavior I don't understand while completing this online course. I was hoping you could help me understand it.

# Reading and writing at the same time
in_file = open('c:/users/*****/desktop/mydata.txt', 'r+')
print(in_file.readline())
in_file.seek(0)
in_file.write('Hi!')
print(in_file.readline())
in_file.close()
The file mydata.txt contains the text "Hello\nWorld!".
In the above code, for reasons I don't understand, it doesn't write to the file. I would have expected it to write "Hi!" over the first three characters and then print the remaining characters "lo", but instead it doesn't write at all and the second readline() prints "Hello" a second time

Output:
Hello Hello
So I wanted to figure out why it wasn't working and decided to add the line "print(in_file.tell())"
# Reading and writing at the same time
in_file = open('c:/users/*****/desktop/mydata.txt', 'r+')
print(in_file.readline())
in_file.seek(0)
in_file.write('Hi!')
print(in_file.tell())
print(in_file.readline())
in_file.close()
Output:
Hello 3 lo
Well now it works as expected. But it only works if I use either tell() or seek() on it after the write() keyword. This works for my assignment because I was required to seek() back to the beginning of the file anyway, but I'm curious why it doesn't write at all in the first example.

Is this the compiler omitting to write the file because I didn't utilized the file/variable enough?
Reply
#2
This is an OS/stdio library thing and python doesn't do anything to modify the behavior.

If you have a file you're both reading and writing, you need to flush the buffer or reposition between operations Something like seek(tell(...)) would be fine. You'd have the same limitation in C.

Basically you executed the write(), but it's written to a buffer rather than the file itself. Then when you read() you updated the buffer pointer. Later when the file was closed, the write() buffer is flushed and it wrote at the new position rather than where you intended. Your file was being updated, but since you only printed the first line you didn't notice.

An in_file.flush() after the write and before the read would also work.
BashBedlam likes this post
Reply
#3
Thanks for your reply.

After you mentioned flush() I remembered it was mentioned earlier in my lesson. I went back and reread that section.

Thanks again for the help :-)
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  How can I write formatted (i.e. bold, italic, change font size, etc.) text to a file? JohnJSal 12 27,759 Feb-13-2025, 04:48 AM
Last Post: tomhansky
  How to write variable in a python file then import it in another python file? tatahuft 4 846 Jan-01-2025, 12:18 AM
Last Post: Skaperen
  [SOLVED] [Linux] Write file and change owner? Winfried 6 1,458 Oct-17-2024, 01:15 AM
Last Post: Winfried
  Strange behavior list of list mmhmjanssen 3 1,527 May-09-2024, 11:32 AM
Last Post: mmhmjanssen
  What does .flush do? How can I change this to write to the file? Pedroski55 3 1,279 Apr-22-2024, 01:15 PM
Last Post: snippsat
  Last record in file doesn't write to newline gonksoup 3 1,509 Jan-22-2024, 12:56 PM
Last Post: deanhystad
  strange behavior of chess library in Python max22 1 1,148 Jan-18-2024, 06:35 PM
Last Post: deanhystad
  write to csv file problem jacksfrustration 11 4,779 Nov-09-2023, 01:56 PM
Last Post: deanhystad
  python Read each xlsx file and write it into csv with pipe delimiter mg24 4 3,705 Nov-09-2023, 10:56 AM
Last Post: mg24
  How do I read and write a binary file in Python? blackears 6 23,859 Jun-06-2023, 06:37 PM
Last Post: rajeshgk

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020