使用python作为表单打开文本文件,并知道它何时关闭

时间:2016-08-19 20:58:22

标签: python file

我想创建一个python脚本,打开一个文本文件,用户可以在继续之前更新(对于配置),然后在文本编辑器关闭后继续运行脚本。 python中有什么东西可以让我这样做吗?

1 个答案:

答案 0 :(得分:0)

在使用记事本的Windows上

import os

cf = "config.txt"  # or full path if you like
if not os.path.exists(cf):
   f = open(cf,"w"); f.close() # create to avoid notepad message

os.system("notepad "+cf)  # call waits until user closes the file
# now the file has been edited by the user