在python中的while循环中写入一些文件

时间:2017-04-18 13:09:51

标签: python

我在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()

你有个主意吗?

0 个答案:

没有答案