[Tutor] (no subject)

R. Alan Monroe R. Alan Monroe" <amonroe@columbus.rr.com
Sun Jun 8 16:13:02 2003


> At 06:43 PM 6/8/2003 +0200, Abel Daniel wrote:

>>(of course this means that you have to type "Tkinter." a lot of places,

> <soapbox> perhaps this is a good place to mention (again) the desirability 
> of a "with" statement in Python.</soapbox>

You can always abbreviate with the help of "as".

import Tkinter as tk
or even,
import Tkinter as t

Saves on some typing.

Alan