OP 04 February, 2021 - 12:11 AM
basically I have a loop which structure is:
While True:
code
if var_x == "kek"
continue
else
break
code
if var_y == "cringe"
continue
else
break
is there a way to make the loop restart at the first continue if that condition is met? otherwise it wouldnt reach the code past the 1 break
While True:
code
if var_x == "kek"
continue
else
break
code
if var_y == "cringe"
continue
else
break
is there a way to make the loop restart at the first continue if that condition is met? otherwise it wouldnt reach the code past the 1 break