tkinter打开文件
时间: 2023-09-16 16:13:12 浏览: 88
Python tkinter 实现新建、打开、另存为文档功能
你可以使用Tkinter库中的`filedialog`模块来打开文件。下面是一个简单的示例代码,它演示了如何使用Tkinter打开文件对话框:
```python
import tkinter as tk
from tkinter import filedialog
root = tk.Tk()
root.withdraw()
file_path = filedialog.askopenfilename()
if file_path:
print("选择的文件路径:", file_path)
else:
print("未选择任何文件")
```
运行上述代码后,将会弹出一个文件对话框供您选择文件。选择完毕后,将会打印出所选文件的路径。如果没有选择任何文件,则会打印出"未选择任何文件"。
阅读全文