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
If you need to print them one at a time, use one of the other answers. This will print them all at once:
my_var = '' while (count < 9): if statusm == "OK": my_var += 'ok' print my_var