There are already lots of other questions about the print statement, but I have not found an answer to my problem:
When I do:
for idx in range(10): p
Try:
for idx in range(10): print('\r', idx, end='')
Carriage return at front, and end with '' to avoid new line '\n'. One solution to avoid the space is to use the format convention:
for idx in range(10): print("'\r{0}".format(idx), end='')