Hi there. I just wondered whether anyone could recommend the correct way I should be passing command line parameters into my program. I am currently using the following code:
def main(argv = None): file1= "directory1" file2 = "directory2" if argv is None: args = sys.argv[1:] if len(args) == 0: Initialise.init(0) Process.processCon(file1, 0) Output.print() for i in range(len(args)): if args[i] == "-no": Initialise.init(0) Process.processCon(file2,1) Output.print() if args[i] == "-not": Initialise.init(1) Process1.process(stepStore, firstSteps) Output.print1() if __name__ == "__main__": main() Have I used bad syntax here so that a user can either run the program with commands: main.py main.py -no main.py -not If I also wanted an option file to be passed in at the command line for 'main.py' and 'main.py -no' what would be the best way to go about this? I have never used Python to pass in arguments at the command line so any help would be much appreciated. Cheers Chris -- http://mail.python.org/mailman/listinfo/python-list