Python另存为/ open

时间:2010-10-16 17:43:20

标签: python windows tkinter

你好吗? 我在Tkinter(python)制作文本编辑器 所以我做了一个菜单,想知道如何调用一个函数来显示每个程序使用的窗口保存或打开框。 例如,在记事本中,您可以单击文件保存,然后打开Windows保存框。 我已经有了菜单但是如何打开保存框。 非常感谢。

1 个答案:

答案 0 :(得分:1)

以下是http://www.daniweb.com/forums/thread39327.html的示例:


import tkFileDialog

def open_it():
    filename = tkFileDialog.askopenfilename()
    print filename  # test

def save_it():
    filename = tkFileDialog.askopenfilename()
    print filename  # test

def save_as():
    filename = tkFileDialog.asksaveasfilename()
    print filename  # test