Explicit or general importing of namespaces?

Harlin Seritt harlinseritt at yahoo.com
Mon Feb 28 05:57:18 EST 2005


Is there really a major performance difference between doing the
following:

import Tkinter as TK

TK.Label(yada yada)

OR

from Tkinter import *

Label(yada yada)

I'm unable to tell a real difference other than in the code writing
:-).

Thanks,

Harlin




More information about the Python-list mailing list