Skip to content

Instantly share code, notes, and snippets.

@akaptur
Created June 26, 2012 16:39
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 akaptur/2996960 to your computer and use it in GitHub Desktop.
Save akaptur/2996960 to your computer and use it in GitHub Desktop.
python is vs. ==
>>> a = [1,2]
>>> b = [1,2]
>>> c = a
>>> a is b
False
>>> a is c
True
>>> a == b
True
(From ocw.mit.edu)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment