Skip to content

Instantly share code, notes, and snippets.

@sshehrozali
Created December 3, 2020 05:46
Show Gist options
  • Select an option

  • Save sshehrozali/b05ebdca541fcc08a0da3bffb098ee49 to your computer and use it in GitHub Desktop.

Select an option

Save sshehrozali/b05ebdca541fcc08a0da3bffb098ee49 to your computer and use it in GitHub Desktop.
Representation of Nested IF condition (Python)
# Python Nested IF condition representation (example)
{ # IF condition
if
{ # 1st condition
if
if # 1st condition of above IF
n times if can be used here
if # 2nd condition of above IF
n times if can be used here
if # 3rd condition of above IF
n times if can be used here
}
# 2nd condition
if
# 3rd condition
if
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment