Re: Question on the Module Import

2011-01-17 Thread Chris Rebert
On Mon, Jan 17, 2011 at 2:01 AM, frank cui wrote: > Hi all, > > I'm quite a novice in doing python,and i wish to ask you guys a question on > the module import. > > Say we have a source file called module1.py. > > What's the difference between the " impor

Question on the Module Import

2011-01-17 Thread frank cui
Hi all, I'm quite a novice in doing python,and i wish to ask you guys a question on the module import. Say we have a source file called module1.py. What's the difference between the " import module1 " and " from module1 import * " I know that conventionally by