--Thiebaut 12:16, 16 April 2009 (UTC)
# dftmodule.py # a simple module for a class demo # D. Thiebaut def hello( name ): print "-" * 60 print "hello %s, and welcome to CSC111!" % ( name ) print "-" * 60 print