在我的代码中,我将一个文件写入我的硬盘。之后,我需要导入生成的文件,然后继续处理它。
for i in xrange(10):
filename=generateFile()
# takes some time, I wish to freeze the program here
# and continue once the file is ready in the system
file=importFile(filename)
processFile(file)
如果我一次性运行代码片段,很可能file=importFile(filename)
会抱怨该文件不存在,因为生成需要一些时间。
我曾经手动运行filename=generateFile()
并等待运行前file=importFile(filename)
。
现在我正在使用for
循环,我正在寻找一种自动方式。