So I have check and it seem stuck at the second while loop.
So let’s go step by step. You set m=0
, as long as m <= 36
it holds true, stepping in
if and only if m % 6 == 0
this is true, if so do some code, then increment m by 1.
Now we are at x = (savings - down_payment)
, x will output some high positive or negative number lets say $20,000.
As long as x != 0.01
which will always be true because x will never be 0.01. So your while loop will be infinitely stuck here
1
solved I’m having issues making the y loop in my percentage guesser work