#! /usr/bin/python # Filename: mymodule # Description: a simple demo about demo # and how to use it #### A module is like a usual script we write #### No big deal, just simple function and varible def sayHello(): print 'Hello, world' version = 0.1 ### This is the end of mymodule.py