我在Python脚本中有一段时间的True循环,我想在一些文件中不断编写一行。接下来,我有一个其他脚本来读取每个文件的内容(也经常)。问题是,当我读,有时,文件是空的,因为写脚本正在写入文件。
这是我的写脚本
while True:
for file in files:
thefile = open(file, "w+")
thefile.write("myLine")
thefile.close()
我的阅读剧本
while True:
for file in files:
thefile = open(file, "r")
print thefile.read()
thefile.close()
你有个主意吗?