Difference between import tkinter as tk and from tkinter import
from Tkinter import * imports every exposed object in Tkinter into your current namespace. import Tkinter imports the “namespace” Tkinter in your namespace and import Tkinter as tk does the same, but “renames” it locally to ‘tk’ to save you typing let’s say we have a module foo, containing the classes A, B, and C. … Read more