[Tutor] importing constants

Alan Trautman ATrautman@perryjudds.com
Mon Feb 10 17:40:55 2003


OTOH if you
from constants import *
then just use the constant name.

Great Idea! I finally see a great reason to use from x import * as all
constants across the modules will have the same name with only one file to
edit.

Thanks Bob