python 文件选择路径
时间: 2023-07-27 08:13:28 浏览: 102
选择文件路径
4星 · 用户满意度95%
你可以使用Python中的`tkinter`模块来创建一个简单的GUI,其中包括一个文件选择器。以下是一个示例代码:
```python
import tkinter as tk
from tkinter import filedialog
root = tk.Tk()
root.withdraw()
file_path = filedialog.askopenfilename()
print(file_path)
```
此代码将创建一个文件选择器对话框,用户可以浏览他们的文件系统并选择文件。选定的文件路径将被存储在`file_path`变量中,并通过`print()`函数打印出来。
阅读全文