Jun-02-2018, 07:58 PM
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