[Solved] str.find == -1 but the string cant pass the if condition
[ad_1] You’re decrementing i twice: once inside the if-statement, once every time in the while loop. Hence, when the if statement evaluates to True, i will be decremented by 2 in total, and you will skip past some values of i. A quick test shows that, indeed, i == 194 is skipped: i jumps from … Read more