Skip to content

Instantly share code, notes, and snippets.

@tylersamples
Last active December 22, 2015 23:09
Show Gist options
  • Save tylersamples/6545185 to your computer and use it in GitHub Desktop.
Save tylersamples/6545185 to your computer and use it in GitHub Desktop.
x=0
while x < 20:
if x < 4:
x = x+1
break # remove
else:
y = 0
while y<2:
x = x+x
y = y+1
break #remove
x = x +1 # move back one indention
break # remove
break # remove
print (x,y)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment