(Ignore x2, I won twice
)
Solved the issue, I put the code in a function and replaced break
with return winners
, because break only terminates the current loop. (thanks to this person)
It would be nice with a function that you can specify how many loops you can terminate; break: n
or break(n)
.