Is there a python command that will essentially perform the following?
for i in range(0, length):
IndShort[i].test_function()
Trying to open a number of .py files, or rather, run test_function from a number of .py files (all existing, named IndShort1, IndShort2 ...).
I don't know that there is any further information that I might provide
for i in range(0, length):
IndShort[i].test_function()
Perhaps too general of a question to expect any specific results?