I have this code:
sys.stdout.write("\r [*] Serching for "+FirstName+" AND "+LastName )
sys.stdout.flush()
But when I put it in loop, step by step I have mixture of FirstNames with each other and also LastNames with each other.
Searching for TEST_THREE AND EXAMPLE_THREE #First time
Searching for TEST_TWOEE AND EXAMPLE_TWOEE #Next time
You see there is EE of THREE after TWO...
How can I fix it?