fork download
record = [str(x) for x in range(10)]
print record
 
import sys
output_pass=sys.stdout
 
counter = 0
 
while counter != (len(record))-1:
   output_pass.write("%s\n" % record[counter])
   counter += 1
Success #stdin #stdout #stderr 0.03s 42064KB
stdin
Standard input is empty
stdout
['0', '1', '2', '3', '4', '5', '6', '7', '8', '9']
0
1
2
3
4
5
6
7
8
stderr
Warning: cannot find your CPU L2 cache size in /proc/cpuinfo