I have a script I\'m working on where I need to accept multiple arguments and then iterate over them to perform actions. I started down the path of defining a function and u
If your question is "how do I iterate over args", then the answer is "the same way you iterate over anything": for arg in args: print arg.
args
for arg in args: print arg