Iterate python args
def function(*args):
for arg in args:
print(arg)
Iterate python args
def function(*args):
for arg in args:
print(arg)