Tkinter FileDialog Cara Menampilkan Lebih Dari Satu FileType

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