I'm a complete newbie to using Python. I have a small question about
importing modules.
Is there any difference between the two following statements, and what
(if any) are they?
[color=blue][color=green][color=darkred]
>>> from Module import *[/color][/color][/color]
and
[color=blue][color=green][color=darkred]
>>> import Module[/color][/color][/color]
Thanks.
kjm
importing modules.
Is there any difference between the two following statements, and what
(if any) are they?
[color=blue][color=green][color=darkred]
>>> from Module import *[/color][/color][/color]
and
[color=blue][color=green][color=darkred]
>>> import Module[/color][/color][/color]
Thanks.
kjm
Comment