it works but there is a syntax error that i need help on fixing
Both lines 54 and 56 have to match the indentation of line 51.
@SixBeeps that created another problem
@ArnavKakani Remove continue, from what I see it can and will do nothing.
continue
@ArnavKakani Now you have an empty block on 52, which Python doesn't like. If you don't want to do anything in that if-statement (for whatever reason) put a pass instead of just leaving it empty.
pass
@SixBeeps what should i do about the break outside the loop?
Both lines 54 and 56 have to match the indentation of line 51.
@SixBeeps that created another problem
@ArnavKakani Remove
continue
, from what I see it can and will do nothing.@ArnavKakani Now you have an empty block on 52, which Python doesn't like. If you don't want to do anything in that if-statement (for whatever reason) put a
pass
instead of just leaving it empty.@SixBeeps what should i do about the break outside the loop?