So wählen Sie eine Datei in Python aus
Simple way to get a directory of a file and open it:
from tkinter.filedialog import askopenfilename
filename = askopenfilename()
Clever Caribou