Skip to content

Instantly share code, notes, and snippets.

@chendi0x7C00
Created November 5, 2016 14:04
Show Gist options
  • Save chendi0x7C00/b45bbc366d9526f5ecd6d441eb7d318f to your computer and use it in GitHub Desktop.
Save chendi0x7C00/b45bbc366d9526f5ecd6d441eb7d318f to your computer and use it in GitHub Desktop.
# coding=UTF-8
a = "s"
b = "s"
print(id(a)) # python use string interning for short strings
print(id(b))
assert a is b
assert a == b
c = "x" * 100
d = "x" * 100
print(id(c))
print(id(d))
assert c is d
assert c == d
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment