在Python 中使用用戶友好的介面檢索檔案路徑
為了在命令列腳本中無縫選擇文件,Python 提供了一個簡單的方法和用戶友好的解決方案:Tkinter。 Tkinter 提供了一個獨立於平台的 GUI 函式庫,可以快速地為腳本新增檔案對話框。
Tkinter 檔案對話方塊
要利用 Tkinter 進行檔案選擇,請依照下列步驟操作:
範例程式碼
以下是說明用法的範例程式碼片段:
<code class="python">import tkinter as tk from tkinter import filedialog # Hide the root window root = tk.Tk() root.withdraw() # Display file dialog file_path = filedialog.askopenfilename()</code>
以下是說明用法的範例程式碼片段:
Python 2 相容性<code class="python">import Tkinter, tkFileDialog # Hide the root window root = Tkinter.Tk() root.withdraw() # Display file dialog file_path = tkFileDialog.askopenfilename()</code>
以上是如何在 Python 中使用 Tkinter 輕鬆檢索檔案路徑?的詳細內容。更多資訊請關注PHP中文網其他相關文章!