Skip to content

Instantly share code, notes, and snippets.

@orkaa
Created June 17, 2016 13:36
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 orkaa/1d354af2baea5bc96d182cbef3e04e35 to your computer and use it in GitHub Desktop.
Save orkaa/1d354af2baea5bc96d182cbef3e04e35 to your computer and use it in GitHub Desktop.
>>> a = 'foo'
>>> b = ''.join(['f', 'o', 'o'])
>>> a
'foo'
>>> b
'foo'
>>> type(a)
<type 'str'>
>>> type(b)
<type 'str'>
>>> a is b
False
>>> a == b
True
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment