Skip to content

Instantly share code, notes, and snippets.

@DavidArno
Created September 28, 2016 20:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DavidArno/6da2717c0f0cb2608b91c9de546c97ef to your computer and use it in GitHub Desktop.
Save DavidArno/6da2717c0f0cb2608b91c9de546c97ef to your computer and use it in GitHub Desktop.
Example of python with else if
if condition_1:
statement_1()
else if condition_2:
statement_2()
else if condition_3:
statement_3()
else:
statement_9()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment