Comment laisser quelqu'un sélectionner un dossier dans Python

from tkinter import Tk
from tkinter.filedialog import askdirectory
path = askdirectory(title='Select Folder') # shows dialog box and return the path
print(path)