Python tkinter 開啟檔案對話框| ShengYu Talk

文章推薦指數: 80 %
投票人數:10人

import tkinter as tk from tkinter import filedialog root = tk.Tk() root.withdraw() file_path = filedialog.askopenfilename(parent=root, title='Select file') ... 2020-11-26 Python教學 本篇介紹如何在Python中開啟檔案對話框,這邊使用python內建的Tkinter的filedialog為示範, Python



請為這篇文章評分?