tkinter fileedialog, wie man mehr als einen Filetyp anzeigt
from tkinter import filedialog
# To show multiple file types at the same time you need to
# seperate the types with a space
filedialog.askopenfilename(filetypes=[("Excel files", ".xlsx .xls")])
Powerful Peafowl