Skip to content

Instantly share code, notes, and snippets.

@elmoiv
Created December 9, 2019 17:13
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 elmoiv/81df6a7835861903b595756ef1bffda5 to your computer and use it in GitHub Desktop.
Save elmoiv/81df6a7835861903b595756ef1bffda5 to your computer and use it in GitHub Desktop.
[Python Tricks #2] Check if 2 numbers are equal without ==.
is_equal = lambda a, b: not a ^ b
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment