Skip to content

Instantly share code, notes, and snippets.

@velotiotech
Created May 24, 2024 04:57
Show Gist options
  • Save velotiotech/c67ea178842e9567714d49e061db1a98 to your computer and use it in GitHub Desktop.
Save velotiotech/c67ea178842e9567714d49e061db1a98 to your computer and use it in GitHub Desktop.
a, b = 100 + 200, 100 + 200
print(a is b)
number = 100
a, b = number + 200, number + 200
print(a is b)
number = 100
a, b = number + 50, number + 50
print(a is b)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment