Skip to content

Instantly share code, notes, and snippets.

@jlggross
Created August 11, 2020 12:14
Show Gist options
  • Save jlggross/bdd50d240a582a29fd41122aea423695 to your computer and use it in GitHub Desktop.
Save jlggross/bdd50d240a582a29fd41122aea423695 to your computer and use it in GitHub Desktop.
Operator comparison Python - part 01
x = 10
y = 10
print(x == y)
# True
print(x is y)
# True
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment