我想创建一个python脚本,打开一个文本文件,用户可以在继续之前更新(对于配置),然后在文本编辑器关闭后继续运行脚本。 python中有什么东西可以让我这样做吗?
答案 0 :(得分:0)
:
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