Skip to content

Instantly share code, notes, and snippets.

@n2n3
Created July 28, 2012 13:28
Show Gist options
  • Save n2n3/3193423 to your computer and use it in GitHub Desktop.
Save n2n3/3193423 to your computer and use it in GitHub Desktop.
contional
if t1:
e1
elif t2:
e2
elif t3:
e3
if t1:
e1
else:
if t2:
e2
else:
if t3:
e3
if t1:
e1
if t2:
e2
if t3:
e3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment