我正在制作一个从网站获取数据然后将其记录在文本文件中的 python 程序。我希望它记录最后 1000 个(我正在测试 4 个和一个字符串“hello”)条目并删除其余条目。这是我到目前为止所拥有的:
f = open("test.txt", "r")
text = f.read()
f = open("test.txt", "w")
content = text.splitlines(True)
f.write("hello")
f.write("\n")
for x in range(0,4):
f.write(str(content[x:x+1]).strip('[]'))
f.close()
然而,这个“有效”的文本文件格式如下:
hello
'hello\n''\'hello\\n\'\'\\\'hello\\\\n\\\'\\\'\\\\\\\'hello\\\\\\\\n\\\\\\\'"\\\\\\\'hello\\\\\\\\\\\\\\\\n\\\\\\\'"\\\'\''
你能帮我弄清楚吗,它看起来像这样:
hello
hello
hello
hello
谢谢!