7 lines
106 B
Python
7 lines
106 B
Python
|
|
from tkinter import filedialog, Tk
|
||
|
|
|
||
|
|
r = Tk()
|
||
|
|
r.withdraw()
|
||
|
|
print(filedialog.askopenfilename())
|
||
|
|
r.destroy()
|