Hi I have a simple code:
for i in range(0, 10):
print '\b*'
outputs:
*
*
*
*
*
*
*
*
*
*
however when I add a comma at the end like so:
for i in range(0, 10):
print '\b*' ,
Output is:
**********
What exactly is the comma doing here with respect to \b??