#!/usr/bin/env python # import required modules: # note that the path to the module htkmfc must be included in the # PYTHONPATH environment variable. # import os import sys # main program # def main(argv): x = [int(1), float(27.27), "Joe"] print ">> dump an object:", x # begin gracefully # if __name__ == "__main__": main(sys.argv[0:]) # # end of file