I was trying to read a changing file in Python, where a script can process newly appended lines. I have the script below which prints out the lines in a file and does not terminate.
with open('tmp.txt','r') as f:
while True:
for line in f:
print(line.replace('\n',''))
Where 'tmp.txt' consists of some lines, e.g.:
a
d
2
3
If I appended to the 'tmp.txt' file, such as using:
echo "hi" >> tmp.txt
The script will print out the new line in if the script is run with Python 3, but not with Python 2. Is there an equivalent in Python 2? And what's different between the two versions of Python in this case?