In Python, the short form for building an array via a bracketized for
loop is:
def get_row(runner):
row = some_complicated_function()
return row
my_array = [get_row(runner) for runner in range(10000)]
How would this look like if I want to avoid the condensed form of for
loop?