I have several test functions named test0 through test{n} which provide outputs for the script I am testing.
Instead of going through the cumbersome process of adding them all to a list and iterating through the list, I was wondering if there is a way to iterate through them in a similar way to an f'string.
E.g:
def t0()
def t9()
numTest = 10
def trueFunc(tn())
for i in range(numTest):
trueFunc(t{i}())