I would like to print to a specific line on stdout using Python.
Say.. I have a loop within a loop. Currently it prints this :
a0,b0,c0,a1,b1,c1,a2,b2,c2,
But actually I want it to print this :
a0,a1,a2,
b0,b1,b2,
c0,c1,c2,
the code looks something like this
import sys
ar = ['a', 'b', 'c']
for i in ar:
c = 1
while c < 4:
sys.stdout.write('%s%s,' % (i, c))
c += 1
Is there a way of identify the line ? eg print to line X ?
Or - can I write 3 lines to stdout (using '\n'), then go back and overwrite line 1 ?
note: I don't just want to achieve the above ! I can do that by altering the loop - the question is about identifying different lines of stdout and writing to them, if possible
Thanks