C_C++
Java
Misc.
Python
ascii_injection.py
ascii_nn_input_helper.py
decorator.py
dpt.py
format.py
graph.py
group.py
int_memory.ctype.py
int_memory.py.py
otest.py
tkinter_filepicker_test.py
torus.py
Vim
Webdev
git
.gitignore
Makefile
12 lines
217 B
Python
12 lines
217 B
Python
|
|
import tkinter as tk
|
|
from tkinter import filedialog
|
|
|
|
root = tk.Tk()
|
|
root.withdraw() # Hide the root window
|
|
|
|
# Open the file picker dialog
|
|
file_path = filedialog.askopenfilename()
|
|
|
|
print("Selected file:", file_path)
|