Skip to content

Instantly share code, notes, and snippets.

@omuomugin
Last active October 25, 2017 05:18
Show Gist options
  • Save omuomugin/276ef6c72e29e765e82fbecc816c068b to your computer and use it in GitHub Desktop.
Save omuomugin/276ef6c72e29e765e82fbecc816c068b to your computer and use it in GitHub Desktop.
python why elif not else if
if condition:
# do something
else condition1:
if condition2:
# else-if 1
else condition3:
if condition4:
# else-if 2
if condition:
# do something
elif condition2:
# else-if 1
elif condition4:
# else-if 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment