My question is how can you break from outside a loop. If i can't is there a work around?
def breaker(numberOfTimesYouWantToBreak):
for i in range(0,numberOfTimesYouWantToBreak+1):
return break
while True:
for i in range(0,100000):
breaker(10)
print(i)
The result i want is:
11,12,13,14...