mirror of
https://github.com/hastagAB/Awesome-Python-Scripts.git
synced 2024-11-23 20:11:07 +00:00
9 lines
143 B
Python
9 lines
143 B
Python
import tkinter as tk
|
|
from tkinter import filedialog
|
|
|
|
root = tk.Tk()
|
|
root.withdraw()
|
|
|
|
file_path = filedialog.askopenfilename()
|
|
print(file_path)
|