I need to print \'ok\' in same place. Any ways to do it?
I\'ve found solutions but they don\'t works with IDLE correctly:
while (count < 9): if
For example, if you want to print "OK" in the exact same spot, you can do :
for i in range(0, 10000): print("\rOK", end='')
Result :
OK
worte 10000 times on the same console spot.