Skip to content

Instantly share code, notes, and snippets.

@bacher09
Created March 19, 2015 00:11
Show Gist options
  • Save bacher09/c468256dc383c5818335 to your computer and use it in GitHub Desktop.
Save bacher09/c468256dc383c5818335 to your computer and use it in GitHub Desktop.
sample
>>> a = "realylongstringwithmanychars"
>>> b = "realylongstringwithmanychars"
>>> a is b
True
>>> a = "a b c"
>>> b = "a b c"
>>> a is b
False
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment