import sys # # Display the name of the program # print "The name of this program is",sys.argv[0] # # Display the number of parameters # print "There are",len(sys.argv),"parameters for this program" # # Display the parameters # for p in sys.argv[1:]: print " ",p