![]() |
Printing from a text file not working as I thought it would - Printable Version +- Python Forum (https://python-forum.io) +-- Forum: Python Coding (https://python-forum.io/forum-7.html) +--- Forum: General Coding Help (https://python-forum.io/forum-8.html) +--- Thread: Printing from a text file not working as I thought it would (/thread-10711.html) Pages:
1
2
|
Printing from a text file not working as I thought it would - PythonZenon - Jun-02-2018 Hi all! So my exercise is to read what's written in a text file and print it three times in three different ways. My solution is: filename = 'learning_python.txt' with open(filename) as file_object: contents = file_object.read() print(contents.strip()) with open(filename) as file_object: lines = file_object.readlines() for line in lines: print(line.strip()) with open(filename) as file_object: for line in file_object: print(line.rstrip())But I don't understand why this isn't working (it prints contents of the file only once instead of thrice): filename = 'learning_python.txt' with open(filename) as file_object: contents = file_object.read() print(contents.strip()) for line in file_object: print(line.rstrip()) lines = file_object.readlines() for line in lines: print(line.strip())I've read through the material again and it says nothing about this and I think it's important to understand this. Thank you! RE: Printing from a text file not working as I thought it would - woooee - Jun-02-2018 After the first read() the file's pointer is positioned at the end of the file, so the "for line in file_object" starts at the end of the file, where there are no more records to be read. Take a look a seek() in the docs if you want to move the pointer back to the beginning of the file. RE: Printing from a text file not working as I thought it would - PythonZenon - Jun-02-2018 (Jun-02-2018, 07:53 PM)woooee Wrote: After the first read() the file's pointer is positioned at the end of the file, so the "for line in file_object" starts at the end of the file, where there are no more records to be read. Take a look a seek() in the docs if you want to move the pointer back to the beginning of the file. Oh, that's what happens! Thank you! I knew it would be useful to find out why this didn't work. Now I only need to find a way to reset the pointer position. Also thank you for your immediate response! RE: Printing from a text file not working as I thought it would - wavic - Jun-02-2018 I can't reproduce it. Here I am creating a file with some nonsenses in it and run Python. You can see that every time I get an output. Are you sure that this is the whole scenario and you don't miss something? victor at Jerry in /m/s/A/M/Chill ↪ touch /tmp/test.txt victor at Jerry in /m/s/A/M/Chill ↪ echo "onsones csicnsns snddddnsod jcsodncs" > /tmp/test.txt victor at Jerry in /m/s/A/M/Chill ↪ cat /tmp/test.txt onsones csicnsns snddddnsod jcsodncs victor at Jerry in /m/s/A/M/Chill ↪ python Python 3.6.4 (default, Jan 5 2018, 02:35:40) [GCC 7.2.1 20171224] on linux Type "help", "copyright", "credits" or "license" for more information. >>> with open('/tmp/test.txt', 'r') as f: ... content = f.read() ... print(content) ... onsones csicnsns snddddnsod jcsodncs >>> with open('/tmp/test.txt', 'r') as f: ... lines = f.readlines() ... >>> for line in lines: ... print(line) ... onsones csicnsns snddddnsod jcsodncs >>> with open('/tmp/test.txt', 'r') as f: ... for line in f: ... print(line.rstrip()) ... onsones csicnsns snddddnsod jcsodncs RE: Printing from a text file not working as I thought it would - PythonZenon - Jun-02-2018 (Jun-02-2018, 07:58 PM)wavic Wrote: I can't reproduce it. Here I am creating a file with some nonsenses in it and run Python. You can see that every time I get an output. Are you sure that this is the whole scenario and you don't miss something? The guy above answered correctly. Using seek(0) solved my problem. Thank you for your time :) RE: Printing from a text file not working as I thought it would - snippsat - Jun-02-2018 (Jun-02-2018, 08:03 PM)PythonZenon Wrote: The guy above answered correctly. Using seek(0) solved my problem. Thank you for your time :)The scenario @woooee talk about can occur,but it should occur in the code you posted. Both second and third with open() will file object be overwritten in memory.
filename = 'test.txt' with open(filename) as file_object: print(id(file_object)) # memory location of file object contents = file_object.read() print(contents.strip()) with open(filename) as file_object: print(id(file_object)) # memory location of file object lines = file_object.readlines() for line in lines: print(line.strip()) You can test yourself on a cloud Python version code,to take your local setup out of the picture. RE: Printing from a text file not working as I thought it would - PythonZenon - Jun-02-2018 (Jun-02-2018, 08:31 PM)snippsat Wrote: The scenario @woooee talk about can occur,but it should occur in the code you posted. I don't understand you and I don't understand what's the point you're trying to make unless you're trying to tell me that after each with open() file_object points to a different memory location.
RE: Printing from a text file not working as I thought it would - snippsat - Jun-02-2018 The point is that your first code should print what's in learning_python.txt 3 times.(Jun-02-2018, 07:39 PM)PythonZenon Wrote: (it prints contents of the file only once instead of thrice): RE: Printing from a text file not working as I thought it would - buran - Jun-02-2018 @snippsat I think OP is asking why this code is not printing the text file 3 times: filename = 'learning_python.txt' with open(filename) as file_object: contents = file_object.read() print(contents.strip()) for line in file_object: print(line.rstrip()) lines = file_object.readlines() for line in lines: print(line.strip()) RE: Printing from a text file not working as I thought it would - PythonZenon - Jun-02-2018 (Jun-02-2018, 09:11 PM)buran Wrote: I think OP is asking why this code is not printing the text file 3 times: You are correct :) I should have worded my question better. |