I am trying to create a file chooser dialog box. However, when I try to import tkMessageBox in Python 3, I get an error claiming that the module does not exist.
import tkMessageBox
# ImportError: No module named 'tkMessageBox'
I get similar errors when trying to import other Tkinter modules in Python 3.
import Tkinter # No module named 'Tkinter'
import tkColorChooser # No module named 'tkColorChooser'
import tkFileDialog # No module named 'tkFileDialog'
How do I import Tkinter modules in Python 3? What are the new module names?