使用Python tkinter模块创建文件对话框,包含“打开”和“保存”按钮的窗口
时间: 2023-11-20 16:05:34 浏览: 167
python tkinter的消息框模块(messagebox,simpledialog)
以下是一个简单的示例代码,使用Python tkinter模块创建文件对话框,包含“打开”和“保存”按钮的窗口:
```python
import tkinter as tk
from tkinter import filedialog
root = tk.Tk()
root.title("文件对话框示例")
def open_file():
file_path = filedialog.askopenfilename()
print("选中的文件路径:", file_path)
def save_file():
file_path = filedialog.asksaveasfilename()
print("保存的文件路径:", file_path)
open_button = tk.Button(root, text="打开", command=open_file)
open_button.pack()
save_button = tk.Button(root, text="保存", command=save_file)
save_button.pack()
root.mainloop()
```
运行代码后,会弹出一个窗口,包含“打开”和“保存”按钮。点击按钮后会弹出文件对话框,选择或输入文件路径,然后在控制台输出选中的文件路径或保存的文件路径。
阅读全文