I'm new to python and I have some confusion in the import methods.
I thought that if I do:
from tkinter import *
I should be able to use:
filedialog.askopenfilename
However, it gives an error saying unsolved references.
If I do:
from tkinter import filedialog
filedialog.askopenfilename
It works correctly and I get why it does it. However, I don't understand why Python will not let me do filedialog.askopenfilename
with from tkinter import *