用Python快速便捷的文件对话框?

用Python快速便捷的文件对话框?,第1张

用Python快速便捷的文件对话框

如果您不希望有任何其他依赖项,则Tkinter是最简单的方法。要仅显示没有任何其他GUI元素的对话框,必须使用以下

withdraw
方法隐藏根窗口:

import tkinter as tkfrom tkinter import filedialogroot = tk.Tk()root.withdraw()file_path = filedialog.askopenfilename()

Python 2变体

import Tkinter, tkFileDialogroot = Tkinter.Tk()root.withdraw()file_path = tkFileDialog.askopenfilename()


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5655088.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存