Indietronica_Hardtech_Piton/tktest.py

7 lines
106 B
Python
Raw Permalink Normal View History

from tkinter import filedialog, Tk
r = Tk()
r.withdraw()
print(filedialog.askopenfilename())
r.destroy()