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
MORE = args
Or, directly:
for arg in args: print "An argument:", arg