我写了一个小的python脚本,只弹出一个包含命令行传递的文本的消息框.我只想在前一次调用的窗口未打开时弹出它.
from Tkinter import * import tkMessageBox root = Tk() root.withdraw() # TODO not if a window with this title exists tkMessageBox.showinfo("Key you!", " ".join(sys.argv[1:]))
知道怎么检查吗?