I'm trying to learn python tkinter but a lot of the names (according to the documentation) in tkinter are giving me errors. I tried in eclipse with pydev and even though the editor tells me "tkinter.font" is fine it gives me an error when i run this:
import tkinter
print(tkinter.font)
AttributeError: 'module' object has no attribute 'font'
If i try this in IDLE it works but i tried some other names in IDLE such as scrolledtext, turtle, dnd and they give me attribute errors.
Can someone please help? this is driving me crazy.