Skip to content

Instantly share code, notes, and snippets.

@shifatul-i
Created October 3, 2019 19:29
Show Gist options
  • Save shifatul-i/6bac74a4b393c78b4e9e7a9f16f9edd3 to your computer and use it in GitHub Desktop.
Save shifatul-i/6bac74a4b393c78b4e9e7a9f16f9edd3 to your computer and use it in GitHub Desktop.
name = "John"
age = 23
if name == "John" and age == 23:
print("Your name is John, and you are also 23 years old.")
if name == "Rick":
print("Your name is either John or Rick.")
if name == "John" or name == "Rick":
print("Your name is either John or Rick.")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment