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
Just iterate over args:
args
def userInput(ItemA, ItemB, *args): THIS = ItemA THAT = ItemB for arg in args: print arg