I have a loop:
for i in range(10):
print i
and it print :
1
2
...
8
9
OK
but I'm searching to make a unique line which actualize for each iteration like this :
for i in range(10):
magic_print "this is the iteration " + i + " /10"
with a result like:
"this is the iteration <i> /10"
<i>
changing dynamically
Thanks !