fork download
record = [str(x) for x in range(10)]
print record

import sys
output_pass=sys.stdout

counter = (len(record))-1

while counter != 0:
   output_pass.write("%s\n" % record[counter])
   counter -= 1
Success #stdin #stdout 0.01s 7736KB
stdin
Standard input is empty
stdout
['0', '1', '2', '3', '4', '5', '6', '7', '8', '9']
9
8
7
6
5
4
3
2
1