Python by Swaroop C H - HTML preview

PLEASE NOTE: This is an HTML preview only and some elements such as links or page numbers may be incorrect.
Download the book in PDF, ePub, Kindle for a complete version.

from..import

Here is a version utilising thefrom..import syntax.

 

#!/usr/bin/python
# Filename: mymodule_demo2.py from mymodule import sayhi, version # Alternative:
# from mymodule import * sayhi()
print 'Version', version
The output ofmymodule_demo2.py is same as the output ofmymodule_demo.py.