Skip to content

Instantly share code, notes, and snippets.

@quantra-go-algo
Created July 1, 2021 14:29
Show Gist options
  • Save quantra-go-algo/a7f011a3a5e7fa44bbda841fa2a12119 to your computer and use it in GitHub Desktop.
Save quantra-go-algo/a7f011a3a5e7fa44bbda841fa2a12119 to your computer and use it in GitHub Desktop.
# Precedence of 'or' & 'and'
name = "John"
age = 0
if name == "John" or name == "Peter" and age >= 2 :
print("Hello! Welcome.")
else :
print("Good Bye!!")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment