# Author: James Tam # Version: March 23, 2010 # Note: this program will echo back all the command arguments entered at runtime. It will # work with 1 or more arguments. import sys def main (): arguments = sys.argv[0:] # Contains all the command line arguments. for argument in arguments: print argument main ()