As part of my script I am printing to the console. I'd really like to print onto the same line but dynamically. e.g.
Something like
1, 2,
1, 2, 3,
1, 2, 3, 4
I have tried:
logging.info("Deleting rows...");
for i in range(0, sizeOfFeed):
logging.info("\%d" % i);
Put this just does
\0
\1
\2
It's dynamic but on different lines.
Any tips