On Thu, Aug 13, 2015 at 9:06 PM, Dwight GoldWinde <dwi...@goldwinde.com> wrote: > global subwordsDL > from Functions import subwords > subwords () > print (subwordsDL) > print (subwordsDL['enjoy'][2])
In Python, "global" means module-level. The easiest way to do this would be to import the Functions module directly (rather than using a from-import), and then you can use Function.subwords and Functions.subwordsDL. ChrisA -- https://mail.python.org/mailman/listinfo/python-list