If we want to call some function by passing arguments that are variables named in some sequence x1, x2, x3,....
def helloWorld(a):
some code
how to loop and pass them . instead of writing function call for each
helloWorld(x1)
helloWorld(x2)
helloWorld(x3)
....
maybe something like
for i in range(100):
helloWorld(xi)