On 10/05/13 06:45, Jim Mooney wrote:

import makeRandomList

newRandomList = createRandomList()


As with any other module you need to specify the module when using its contents:

newRandomList = makeRandomList.createRandomList()

BTW. A better name for the module is probably just randomlist

HTH
--
Alan G
Author of the Learn to Program web site
http://www.alan-g.me.uk/

_______________________________________________
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor

Reply via email to