Skip to content

Instantly share code, notes, and snippets.

@makesomelayouts
Last active November 6, 2025 06:25
Show Gist options
  • Select an option

  • Save makesomelayouts/e1b8afa895deefcfef18865a3c70ecac to your computer and use it in GitHub Desktop.

Select an option

Save makesomelayouts/e1b8afa895deefcfef18865a3c70ecac to your computer and use it in GitHub Desktop.
a, b = 1092, 1092; c = 1092
print(a is b is c) # True
a, b = 1092, 1092
c = 1092
print(a is b, a is c) # True, False
# but
a, b = 92, 92
c = 92
print(a is b is c) # True
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment